
io.lsn.spring.utilities.exception.SystemMappingException Maven / Gradle / Ivy
package io.lsn.spring.utilities.exception;
/**
* Created by tomek on 18.11.2016.
*/
public class SystemMappingException extends Exception {
public SystemMappingException() {
super();
}
public SystemMappingException(String message) {
super(message);
}
public SystemMappingException(String message, Throwable cause) {
super(message, cause);
}
public SystemMappingException(Throwable cause) {
super(cause);
}
protected SystemMappingException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy