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

com.bluecatcode.common.exceptions.CheckedException Maven / Gradle / Ivy

package com.bluecatcode.common.exceptions;

/**
 * Base CheckedException exception with a clear name
 * 

* Intended for use with custom exceptions for clear class hierarchy * * @see Exception * @since 1.0.4 */ public class CheckedException extends Exception { static final long serialVersionUID = -0L; /** * @see Exception#Exception() */ public CheckedException() { /* Empty */ } /** * @see Exception#Exception(String) */ public CheckedException(String message) { super(message); } /** * @see Exception#Exception(String, Throwable) */ public CheckedException(String message, Throwable cause) { super(message, cause); } /** * @see Exception#Exception(Throwable) */ public CheckedException(Throwable cause) { super(cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy