18 lines
371 B
Java
18 lines
371 B
Java
package com.gzzn.omms.msgexchangeapi.exception;
|
|||
|
|
|
||
|
|
public class ExchangeServiceException extends RuntimeException {
|
||
|
|
|
||
|
|
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
public ExchangeServiceException(String message)
|
||
|
|
{
|
||
|
|
super(message);
|
||
|
|
}
|
||
|
|
|
||
|
|
public ExchangeServiceException(String message,Throwable cause)
|
||
|
|
{
|
||
|
|
super(message,cause);
|
||
|
|
}
|
||
|
|
}
|