1 24 25 package org.objectweb.dream.adl.legacy; 26 27 32 public class ComponentNotFoundException extends Exception  33 { 34 35 Object context; 36 Object name; 37 38 45 public ComponentNotFoundException(String message, Object context, Object name) 46 { 47 super(message); 48 this.context = context; 49 this.name = name; 50 } 51 52 55 public String toString() 56 { 57 return "Unable to find legacy component. context=" + context + ", name=" 58 + name + " : " + getLocalizedMessage(); 59 } 60 61 } | Popular Tags |