1 50 51 52 53 package net.sf.just4log; 54 55 59 60 public class NoMatchingInvokeInterfaceInstruction extends Exception { 61 62 65 public NoMatchingInvokeInterfaceInstruction() { 66 super(); 67 } 68 69 72 public NoMatchingInvokeInterfaceInstruction(String message) { 73 super(message); 74 } 75 76 80 public NoMatchingInvokeInterfaceInstruction( 81 String message, 82 Throwable cause) { 83 super(message, cause); 84 } 85 86 89 public NoMatchingInvokeInterfaceInstruction(Throwable cause) { 90 super(cause); 91 } 92 93 } 94 | Popular Tags |