1 23 24 32 33 package com.sun.enterprise.deployment.phasing; 34 35 39 public class DeploymentTargetException extends java.lang.Exception { 40 41 44 public DeploymentTargetException() { 45 } 46 47 48 52 public DeploymentTargetException(String msg) { 53 super(msg); 54 } 55 56 62 public DeploymentTargetException(String msg, Throwable t) { 63 super(msg, t); 64 } 65 66 70 public DeploymentTargetException(Throwable t) { 71 super(t); 72 } 73 } 74 | Popular Tags |