01: /*
02: * InvalidRegistrationException.java
03: *
04: * Created on December 31, 2004, 11:42 AM
05: */
06:
07: package com.sun.portal.wsrp.producer;
08:
09: /**
10: *
11: * @author Rajesh T
12: */
13: public class InvalidRegistrationException extends ProducerException {
14:
15: private static String invalidRegistrationErrorMessage = "Invalid Registration Handle";
16:
17: /** Creates a new instance of InvalidRegistrationException */
18: public InvalidRegistrationException() {
19: super (invalidRegistrationErrorMessage);
20: }
21:
22: public InvalidRegistrationException(Throwable targetThrowable) {
23: super (targetThrowable);
24: }
25:
26: public InvalidRegistrationException(String message,
27: Throwable targetThrowable) {
28: super (message, targetThrowable);
29: }
30:
31: public InvalidRegistrationException(String message) {
32: super(message);
33: }
34:
35: }
|