com.maxleap.code.LASException Maven / Gradle / Ivy
package com.maxleap.code;
/**
* Created by stream
*/
public class LASException extends RuntimeException {
public LASException() {
super();
}
public LASException(Throwable cause) {
super(cause);
}
public LASException(String message) {
super(message);
}
public LASException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy