1 13 package info.magnolia.module.admininterface; 14 15 20 public class InvalidTreeHandlerException extends RuntimeException { 21 22 25 private static final long serialVersionUID = 222L; 26 27 31 public InvalidTreeHandlerException(String treeName) { 32 super("No tree handler for [" + treeName + "] found"); } 34 35 41 public InvalidTreeHandlerException(String treeName, Throwable cause) { 42 super("Unable to instantiate a tree handler for [" + treeName 44 + "] due to a " + cause.getClass().getName() 46 + " exception", cause); } 48 49 } 50 | Popular Tags |