1 30 31 package oracle.toplink.libraries.asm.tree.analysis; 32 33 39 40 public class AnalyzerException extends Exception { 41 42 public AnalyzerException (final String msg) { 43 super(msg); 44 } 45 46 public AnalyzerException ( 47 final String msg, 48 final Object expected, 49 final Value encountered) 50 { 51 super((msg == null ? "Expected " : msg + ": expected ") 52 + expected + ", but found " + encountered); 53 } 54 } 55 | Popular Tags |