21 lines
364 B
Java
21 lines
364 B
Java
package com.adc.da.exception;
|
|
|
|
public class ServiceException extends Exception {
|
|
|
|
|
|
/**
|
|
* Instantiates a new Service exception.
|
|
*/
|
|
public ServiceException() {
|
|
}
|
|
|
|
/**
|
|
* Instantiates a new Service exception.
|
|
*
|
|
* @param message the message
|
|
*/
|
|
public ServiceException(String message) {
|
|
super(message);
|
|
}
|
|
}
|