KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > walend > somnifugi > SomniRuntimeException


1 package net.walend.somnifugi;
2
3 /**
4 An exception thrown when the Somni messaging system encounters an impossible problem.
5
6 @author <a HREF="http://walend.net">David Walend</a> <a HREF="mailto:david@walend.net">david@walend.net</a>
7 */

8
9 public class SomniRuntimeException
10     extends RuntimeException JavaDoc
11 {
12     private static final long serialVersionUID = 0L;
13
14     private SomniMessage lostMessage = null;
15     private SomniDestination destination = null;
16
17     protected SomniRuntimeException(String JavaDoc message)
18     {
19         super(message);
20     }
21
22     protected SomniRuntimeException(String JavaDoc message,SomniMessage lostMessage,SomniDestination destination)
23     {
24         super(message);
25         this.lostMessage = lostMessage;
26         this.destination = destination;
27     }
28
29     protected SomniRuntimeException(Throwable JavaDoc nester)
30     {
31         super(nester);
32     }
33
34     public SomniRuntimeException(String JavaDoc message, Throwable JavaDoc nester)
35     {
36         super(message,nester);
37     }
38
39     protected SomniRuntimeException(Throwable JavaDoc nester,SomniMessage lostMessage,SomniDestination destination)
40     {
41         super(nester);
42         this.lostMessage = lostMessage;
43         this.destination = destination;
44     }
45
46     public String JavaDoc getMessage()
47     {
48         if(destination==null)
49             {
50                 return super.getMessage();
51             }
52         else
53             {
54                 StringBuffer JavaDoc buffy = new StringBuffer JavaDoc();
55                 
56                 buffy.append(super.getMessage());
57                 buffy.append(" while ");
58                 buffy.append(destination.getName());
59                 buffy.append(" was trying to send ");
60                 buffy.append(lostMessage.toString());
61
62                 return buffy.toString();
63             }
64     }
65
66     public SomniMessage getLostMessage()
67     {
68         return lostMessage;
69     }
70
71     public SomniDestination getDestination()
72     {
73         return destination;
74     }
75 }
76
77 /*
78 Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 David Walend
79 All rights reserved.
80
81 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
82
83 Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
84
85 Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
86
87 Neither the name of the SomnifugiJMS Project, walend.net, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission from David Walend.
88
89 Credits in redistributions in source or binary forms must include a link to http://somnifugi.sourceforge.net .
90
91 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
92 The net.walend.somnifugi.sql92 package is modified code from the openmq project, https://mq.dev.java.net/ , Copyright (c) of Sun, and carries the CDDL license, repeated here: You can obtain a copy of the license at https://glassfish.dev.java.net/public/CDDLv1.0.html. See the License for the specific language governing permissions and limitations under the License.
93
94 =================================================================================
95
96 For more information and the latest version of this software, please see http://somnifugi.sourceforge.net and http://walend.net or email <a HREF="mailto:david@walend.net">david@walend.net</a>.
97
98 */

99
100
101
102
Popular Tags