1 22 package org.jboss.security.identity.sso; 23 24 26 33 public class SSOException extends Exception  34 { 35 36 private static final long serialVersionUID = -6690284220592821869L; 37 38 public SSOException() 39 { 40 super(); 41 } 42 43 public SSOException(String message, Throwable cause) 44 { 45 super(message, cause); 46 } 47 48 public SSOException(String message) 49 { 50 super(message); 51 } 52 53 public SSOException(Throwable cause) 54 { 55 super(cause); 56 } 57 } 58 | Popular Tags |