1 16 17 package org.apache.jetspeed.util; 18 19 import org.apache.commons.lang.exception.NestableException; 20 21 27 28 public class ValidationException extends NestableException 29 { 30 31 35 public ValidationException() 36 { 37 } 38 39 45 public ValidationException(String param) 46 { 47 super(param); 48 } 49 50 57 public ValidationException(Throwable nested) 58 { 59 super(nested); 60 } 61 62 70 public ValidationException(String msg, Throwable nested) 71 { 72 super(msg, nested); 73 } 74 } 75 76 77 78 79 | Popular Tags |