1 package jfun.yan; 2 3 10 public class InternalException extends YanException { 11 12 public InternalException() { 13 } 14 15 public InternalException(String message, Throwable cause) { 16 super(message, cause); 17 } 18 19 public InternalException(String arg0) { 20 super(arg0); 21 } 22 23 public InternalException(Throwable cause) { 24 super(cause); 25 } 26 27 } 28 | Popular Tags |