1 23 24 package com.sun.enterprise.admin.servermgmt; 25 26 29 public class DomainException extends RepositoryException 30 { 31 34 public DomainException(String message) 35 { 36 super(message); 37 } 38 39 42 public DomainException(Throwable cause) 43 { 44 super(cause); 45 } 46 47 51 public DomainException(String message, Throwable cause) 52 { 53 super(message, cause); 54 } 55 } 56 | Popular Tags |