1 17 18 package org.apache.geronimo.common; 19 20 23 public class GeronimoSecurityException extends RuntimeException { 24 public GeronimoSecurityException() { 25 } 26 27 public GeronimoSecurityException(String message) { 28 super(message); 29 } 30 31 public GeronimoSecurityException(String message, Throwable cause) { 32 super(message, cause); 33 } 34 35 public GeronimoSecurityException(Throwable cause) { 36 super(cause); 37 } 38 } 39 | Popular Tags |