KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bus > ws > rm > persistence > RMStoreException


1 package org.objectweb.celtix.bus.ws.rm.persistence;
2
3 import org.objectweb.celtix.common.i18n.Message;
4 import org.objectweb.celtix.common.i18n.UncheckedException;
5
6 public class RMStoreException extends UncheckedException {
7     
8     private static final long serialVersionUID = 1L;
9
10     /**
11      * Constructs a <code>RMPersistenceException</code> with the provided detail message.
12      */

13     public RMStoreException(Message msg) {
14         super(msg);
15     }
16
17     /**
18      * Constructs a <code>RMPersistenceException</code> with the detail message and cause
19      * provided.
20      */

21     public RMStoreException(Message msg, Throwable JavaDoc cause) {
22         super(msg, cause);
23     }
24
25     /**
26      * Constructs a <code>RMPersistenceException</code> with the provided cause.
27      */

28     public RMStoreException(Throwable JavaDoc cause) {
29         super(cause);
30     }
31 }
32
Popular Tags