KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > communication > sms > util > SortException


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.services.communication.sms.util;
6
7 /**
8  *
9  * @author: Ove Ranheim
10  * @email: oranheim@users.sourceforge.net
11  */

12 public class SortException extends RuntimeException JavaDoc {
13
14     public SortException() {
15     }
16
17     public SortException(String JavaDoc message) {
18         super(message);
19     }
20
21     public SortException(String JavaDoc message, Throwable JavaDoc cause) {
22         super(message, cause);
23     }
24
25     public SortException(Throwable JavaDoc cause) {
26         super(cause);
27     }
28 }
Popular Tags