All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.ac.ceh.components.vocab.VocabularyException Maven / Gradle / Ivy

There is a newer version: 1.0.46
Show newest version
package uk.ac.ceh.components.vocab;

/**
 *
 * @author cjohn
 */
public class VocabularyException extends Exception {

    public VocabularyException(String mess) {
        super(mess);
    }

    public VocabularyException(Throwable ex) {
        super(ex);
    }
    
    public VocabularyException(String mess, Throwable ex) {
        super(mess, ex);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy