1 23 24 package com.sun.enterprise.admin.server.core.jmx; 25 26 public class InitException extends Exception  27 { 28 29 32 33 public InitException() 34 { 35 super(); 36 } 37 38 39 44 45 public InitException(String msg) 46 { 47 super(msg); 48 } 49 50 public InitException(String msg, Throwable cause ) 51 { 52 super(msg, cause ); 53 } 54 55 public InitException( Throwable cause ) 56 { 57 super( cause ); 58 } 59 } | Popular Tags |