1 64 65 package com.jcorporate.expresso.core.controller; 66 67 import com.jcorporate.expresso.kernel.exception.ChainedException; 68 69 70 75 76 83 public class ValidationException 84 extends ChainedException { 85 88 public ValidationException() { 89 super(); 90 } 91 92 97 public ValidationException(String s) { 98 super(s); 99 } 100 101 102 public ValidationException(String s, Throwable t) { 103 super(s, t); 104 } 105 106 public ValidationException(Throwable t) { 107 super(t); 108 } 109 } 110 111 | Popular Tags |