1 /* 2 * Created on 22 janv. 2004 3 * 4 * To change the template for this generated file go to 5 * Window>Preferences>Java>Code Generation>Code and Comments 6 */ 7 package org.objectweb.openccm.descriptor.componentassembly.ccm.deployer.base; 8 9 /** 10 * @author briclet 11 * 12 * To change the template for this generated type comment go to 13 * Window>Preferences>Java>Code Generation>Code and Comments 14 */ 15 public class DeployerNotFound extends Exception { 16 public DeployerNotFound(String id){ 17 super("Cannot found the deployer denote by ["+id+"]"); 18 } 19 } 20