1 5 package org.picocontainer.defaults; 6 7 import org.picocontainer.PicoException; 8 import org.picocontainer.PicoVisitor; 9 10 11 18 public class PicoVisitorTraversalException 19 extends PicoException { 20 21 26 public PicoVisitorTraversalException(PicoVisitor visitor) { 27 super("Traversal for PicoVisitor of type " + visitor.getClass().getName() + " must start with the visitor's traverse method"); 28 } 29 } 30 | Popular Tags |