1 46 package groovy.lang; 47 48 54 public class TypeMismatchException extends java.lang.IllegalArgumentException { 55 56 public TypeMismatchException() { 57 super(); 58 } 59 60 public TypeMismatchException(String msg) { 61 super(msg); 62 } 63 64 public TypeMismatchException(Exception e) { 65 super("The reason is from " + e); 66 } 67 68 public TypeMismatchException(String msg, Exception e) { 69 super(msg + " The reason is from " + e); 70 } 71 72 } 73 | Popular Tags |