1 16 package javax.faces.event; 17 18 import javax.faces.FacesException; 19 20 24 public class AbortProcessingException extends FacesException 25 { 26 28 public AbortProcessingException() 30 { 31 super(); 32 } 33 34 public AbortProcessingException(String message) 35 { 36 super(message); 37 } 38 39 public AbortProcessingException(String message, Throwable cause) 40 { 41 super(message, cause); 42 } 43 44 public AbortProcessingException(Throwable cause) 45 { 46 super(cause); 47 } 48 } 49 | Popular Tags |