View Javadoc
1 /* 2 * Copyright (c) 2001, 2002 The XDoclet team 3 * All rights reserved. 4 */ 5 package xdoclet.util.predicates; 6 7 import xdoclet.XDocletException; 8 9 /*** 10 * This exception can be thrown by PredicateFactory. 11 * 12 * @see PredicateFactory 13 * 14 * @author <a href="aslak.hellesoy at netcom.no">Aslak Hellesøy</a> 15 */ 16 public class PredicateException extends XDocletException { 17 public PredicateException() { 18 super(); 19 } 20 21 public PredicateException(String message) { 22 super(message); 23 } 24 25 public PredicateException(String message, Throwable cause) { 26 super(message, cause); 27 } 28 29 public PredicateException(Throwable cause) { 30 super(cause); 31 } 32 }

This page was automatically generated by Maven