com.happy3w.toolkits.exception.UnexpectedException Maven / Gradle / Ivy
package com.happy3w.toolkits.exception;
/**
* Exception for developer
*/
public class UnexpectedException extends RuntimeException {
public UnexpectedException(String message) {
super(message);
}
public UnexpectedException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy