1 29 30 package com.caucho.server.deploy; 31 32 35 public class DeployException extends Exception  36 { 37 40 public DeployException() 41 { 42 } 43 44 47 public DeployException(String msg) 48 { 49 super(msg); 50 } 51 52 55 public DeployException(String msg, Throwable e) 56 { 57 super(msg, e); 58 } 59 60 63 public DeployException(Throwable e) 64 { 65 super(e); 66 } 67 } 68 | Popular Tags |