Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
epoxy
GitHub Repository: epoxy/proj11
Path: blob/master/SLICK_HOME/src/org/newdawn/slick/SlickException.java
1456 views
1
package org.newdawn.slick;
2
3
/**
4
* A generic exception thrown by everything in the library
5
*
6
* @author kevin
7
*/
8
public class SlickException extends Exception {
9
/**
10
* Create a new exception with a detail message
11
*
12
* @param message The message describing the cause of this exception
13
*/
14
public SlickException(String message) {
15
super(message);
16
}
17
18
/**
19
* Create a new exception with a detail message
20
*
21
* @param message The message describing the cause of this exception
22
* @param e The exception causing this exception to be thrown
23
*/
24
public SlickException(String message, Throwable e) {
25
super(message, e);
26
}
27
}
28
29