Added EnvoyException class

This commit is contained in:
Kai S. K. Engelbart 2019-10-27 21:35:05 +01:00
parent 02bc5e6d38
commit 93503ae861
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package envoy.exception;
/**
* Project: <strong>envoy-common</strong><br>
* File: <strong>EnvoyException.java</strong><br>
* Created: <strong>27 Oct 2019</strong><br>
*
* @author Kai S. K. Engelbart
* @since Envoy v0.1-alpha
*/
public class EnvoyException extends Exception {
private static final long serialVersionUID = 2096147309395387479L;
public EnvoyException(String message, Throwable cause) { super(message, cause); }
public EnvoyException(String message) { super(message); }
public EnvoyException(Throwable cause) { super(cause); }
}