1 23 24 package com.sun.enterprise.admin.common.domains.registry; 25 31 import java.security.PrivilegedActionException ; 32 33 public class DomainRegistryException extends Exception  34 { 35 40 41 public DomainRegistryException(){ 42 super(); 43 } 44 45 53 public DomainRegistryException(String message){ 54 super(message); 55 } 56 57 71 public DomainRegistryException(String message, 72 Throwable cause){ 73 super(message+" "+cause.getMessage()); 74 this.cause = cause; 75 } 76 77 91 public DomainRegistryException(Throwable cause){ 92 super(cause.getMessage()); 93 this.cause = cause; 94 } 95 96 private Throwable cause; 97 98 } 99 | Popular Tags |