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