1 23 24 package com.sun.enterprise.admin.servermgmt; 25 26 public class InstanceException extends RepositoryException 27 { 28 31 public InstanceException(String message) 32 { 33 super(message); 34 } 35 36 39 public InstanceException(Throwable cause) 40 { 41 super(cause); 42 } 43 44 48 public InstanceException(String message, Throwable cause) 49 { 50 super(message, cause); 51 } 52 } 53 | Popular Tags |