All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.happy3w.toolkits.exception.CustomMessageException Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
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