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

org.enodeframework.common.exception.EnodeClassNotFoundException Maven / Gradle / Ivy

package org.enodeframework.common.exception;

/**
 * @author [email protected]
 */
public class EnodeClassNotFoundException extends EnodeException {

    private static final long serialVersionUID = 2514628822193223823L;

    public EnodeClassNotFoundException() {
        super();
    }

    public EnodeClassNotFoundException(String msg) {
        super(msg);
    }

    public EnodeClassNotFoundException(Throwable cause) {
        super(cause);
    }

    public EnodeClassNotFoundException(String msg, Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy