|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| CasClientException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 | /* | |
| 2 | * Portions of this file Copyright 1999-2005 University of Chicago | |
| 3 | * Portions of this file Copyright 1999-2005 The University of Southern California. | |
| 4 | * | |
| 5 | * This file or a portion of this file is licensed under the | |
| 6 | * terms of the Globus Toolkit Public License, found at | |
| 7 | * http://www.globus.org/toolkit/download/license.html. | |
| 8 | * If you redistribute this file, with or without | |
| 9 | * modifications, you must include this notice in the file. | |
| 10 | */ | |
| 11 | package org.globus.cas.impl.client; | |
| 12 | ||
| 13 | import org.globus.common.ChainedException; | |
| 14 | ||
| 15 | /** | |
| 16 | * Exception thrown by CAS client helper code. | |
| 17 | */ | |
| 18 | public class CasClientException extends ChainedException { | |
| 19 | ||
| 20 | 0 | public CasClientException() { |
| 21 | 0 | super(); |
| 22 | } | |
| 23 | ||
| 24 | 0 | public CasClientException(String message) { |
| 25 | 0 | super(message); |
| 26 | } | |
| 27 | ||
| 28 | 0 | public CasClientException(Exception e) { |
| 29 | 0 | super("", e); |
| 30 | } | |
| 31 | ||
| 32 | 0 | public CasClientException(String message, Exception e) { |
| 33 | 0 | super(message, e); |
| 34 | } | |
| 35 | } |
|
||||||||||
