/src/kilim/mirrors/ClassMirrorNotFoundException.java
Java | 23 lines | 14 code | 5 blank | 4 comment | 0 complexity | cd500770a5cf773ac956a8b60e62a665 MD5 | raw file
1// Copyright 2010 by sriram - offered under the terms of the MIT License 2 3package kilim.mirrors; 4 5public class ClassMirrorNotFoundException extends Exception { 6 7 /** 8 * 9 */ 10 private static final long serialVersionUID = 5147833200948234264L; 11 12 public ClassMirrorNotFoundException (String msg) { 13 super(msg); 14 } 15 public ClassMirrorNotFoundException(Throwable cause) { 16 super(cause); 17 } 18 public ClassMirrorNotFoundException(String className, 19 ClassNotFoundException e) { 20 super(className, e); 21 } 22 23}