
io.lsn.spring.system.mapper.exception.SystemMapperException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of system.mapper Show documentation
Show all versions of system.mapper Show documentation
System to system mapping utilities
The newest version!
package io.lsn.spring.system.mapper.exception;
public class SystemMapperException extends Exception {
public SystemMapperException() {
super();
}
public SystemMapperException(String message) {
super(message);
}
public SystemMapperException(String message, Throwable cause) {
super(message, cause);
}
public SystemMapperException(Throwable cause) {
super(cause);
}
protected SystemMapperException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy