001 package railo.runtime.cfx; 002 003 004 /** 005 * Custom Tag Exception 006 */ 007 public final class CFXTagException extends Exception { 008 009 /** 010 * Constructor of the Exception 011 * @param message 012 */ 013 public CFXTagException(String message) { 014 super(message); 015 } 016 017 /** 018 * Constructor of the Exception 019 * @param e 020 */ 021 public CFXTagException(Throwable e) { 022 super(e.getClass().getName()+":"+e.getMessage()); 023 } 024 }