1 64 package com.jcorporate.expresso.kernel.exception; 65 66 76 77 public class ContainerVetoException extends ExpressoRuntimeException { 78 79 82 public ContainerVetoException() { 83 super(); 84 } 85 86 91 public ContainerVetoException(String s) { 92 super(s); 93 } 94 95 104 public ContainerVetoException(String s, Throwable t) { 105 super(s, t); 106 } 107 108 114 public ContainerVetoException(Throwable t) { 115 super(t); 116 } 117 } | Popular Tags |