1 23 package com.sun.enterprise.deployment; 24 25 31 public class DeploymentException extends Exception 32 { 33 public DeploymentException() 34 { 35 } 36 public DeploymentException(String s) 37 { 38 super(s); 39 } 40 public DeploymentException(Throwable t) 41 { 42 super(t); 43 } 44 public DeploymentException(String s, Throwable t) 45 { 46 super(s + " -- " + t.getMessage(), t); 47 } 48 } 49 | Popular Tags |