1 2 3 4 5 6 7 8 9 10 11 12
package NET.worlds.core; public class AssertionException extends RuntimeException { private static final long serialVersionUID = -5738682100298167153L; public AssertionException() { } public AssertionException(String str) { super(str); } }