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

fi.jubic.easyconfig.MappingException Maven / Gradle / Ivy

There is a newer version: 0.10.4
Show newest version
package fi.jubic.easyconfig;

/**
 * Exception describing mapping errors.
 *
 * @deprecated Replaced by {@link IllegalArgumentException}
 */
@Deprecated
public class MappingException extends Exception {
    public MappingException() {
        super();
    }

    public MappingException(String message) {
        super(message);
    }

    public MappingException(String message, Throwable cause) {
        super(message, cause);
    }

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

    public MappingException(
            String message,
            Throwable cause,
            boolean enableSuppression,
            boolean writableStackTrace
    ) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy