1 23 24 package com.sun.ejb.codegen; 25 26 33 public class CmpCompilerException extends Exception { 34 35 38 public CmpCompilerException() { 39 super(); 40 } 41 42 47 public CmpCompilerException(String s) { 48 super(s); 49 } 50 51 57 public CmpCompilerException(Throwable t) { 58 super(t); 59 } 60 61 67 public CmpCompilerException(String msg, Throwable t) { 68 super(msg, t); 69 } 70 71 } 72 | Popular Tags |