1 26 package org.objectweb.openccm.descriptor.componentassembly.ccm.deployer.base; 27 28 36 public class DeployerFailureException 37 extends DeployerExceptionWrapper 38 { 39 public DeployerContext deployer; 46 47 53 60 public 61 DeployerFailureException(DeployerContext deployer, 62 Exception e, 63 String message) 64 { 65 super(e, message); 66 this.deployer = deployer; 67 } 68 69 75 84 public DeployerContext 85 getDeployer() 86 { 87 return deployer; 88 } 89 90 } 91 | Popular Tags |