
com.github.ltsopensource.core.exception.LtsRuntimeException Maven / Gradle / Ivy
The newest version!
package com.github.ltsopensource.core.exception;
/**
* @author Robert HG ([email protected]) on 3/2/16.
*/
public class LtsRuntimeException extends RuntimeException {
public LtsRuntimeException() {
super();
}
public LtsRuntimeException(String message) {
super(message);
}
public LtsRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public LtsRuntimeException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy