01: /*
02: * Copyright 2002-2007 the original author or authors.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.springframework.jms;
18:
19: /**
20: * JmsException to be thrown when no other matching subclass found.
21: *
22: * @author Juergen Hoeller
23: * @since 1.1
24: */
25: public class UncategorizedJmsException extends JmsException {
26:
27: /**
28: * Constructor that takes a message.
29: * @param msg the detail message
30: */
31: public UncategorizedJmsException(String msg) {
32: super (msg);
33: }
34:
35: /**
36: * Constructor that takes a message and a root cause.
37: * @param msg the detail message
38: * @param cause the cause of the exception. This argument is generally
39: * expected to be a proper subclass of {@link javax.jms.JMSException},
40: * but can also be a JNDI NamingException or the like.
41: */
42: public UncategorizedJmsException(String msg, Throwable cause) {
43: super (msg, cause);
44: }
45:
46: /**
47: * Constructor that takes a root cause only.
48: * @param cause the cause of the exception. This argument is generally
49: * expected to be a proper subclass of {@link javax.jms.JMSException},
50: * but can also be a JNDI NamingException or the like.
51: */
52: public UncategorizedJmsException(Throwable cause) {
53: super ("Uncategorized exception occured during JMS processing",
54: cause);
55: }
56:
57: }
|