Examples of InvalidArgument


Examples of org.openbel.framework.common.InvalidArgument

    /**
     * {@inheritDoc}
     */
    @Override
    public List<AnnotationType> getAnnotationTypes(KamInfo ki) {
        if (ki == null) throw new InvalidArgument(DEFAULT_MSG);
        if (!exists(ki)) return null;
        try {
            return kamStoreDao(ki).getAnnotationTypes();
        } catch (SQLException e) {
            final String fmt = "error getting annotation types for %s";
View Full Code Here

Examples of org.openbel.framework.common.InvalidArgument

     * {@inheritDoc}
     */
    @Override
    public List<String> getAnnotationTypeDomainValues(KamInfo ki,
            AnnotationType annotationType) {
        if (ki == null) throw new InvalidArgument(DEFAULT_MSG);
        if (!exists(ki)) return null;
        try {
            KAMStoreDao dao = kamStoreDao(ki);
            return dao.getAnnotationTypeDomainValues(annotationType);
        } catch (SQLException e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.