1 21 22 package com.rift.coad.daemon.messageservice; 24 25 import java.lang.Exception ; 27 import java.io.Serializable ; 28 29 35 public class MessageServiceException extends Exception implements Serializable { 36 37 41 public MessageServiceException() { 42 } 43 44 45 51 public MessageServiceException(String msg) { 52 super(msg); 53 } 54 55 56 63 public MessageServiceException(String msg, Throwable ex) { 64 super(msg,ex); 65 } 66 } 67 | Popular Tags |