1 23 24 30 31 package com.sun.enterprise.deployment.autodeploy; 32 import com.sun.enterprise.deployment.backend.IASDeploymentException; 33 38 39 40 public class AutoDeploymentException extends IASDeploymentException { 41 44 public AutoDeploymentException(){ 45 super(); 46 } 47 50 public AutoDeploymentException(String mes){ 51 super(mes); 52 } 53 56 public AutoDeploymentException(Throwable t) { 57 super(t.toString()); 58 } 59 62 public AutoDeploymentException(String s, Throwable t) { 63 super(s + " -- " + t.getMessage(), t); 64 65 } 66 67 68 } | Popular Tags |