Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.70 KB | None | 0 0
  1. /**
  2.  * Exception for ... blabla ...
  3.  * @author McK
  4.  * @category Exception
  5.  */
  6. public final class ServiceException extends Exception {
  7.  
  8.     /** Serialization index. **/
  9.     private static final long serialVersionUID = 1L;
  10.  
  11.     /** @see Exception#Exception(). **/
  12.     public ServiceException() {
  13.         super();
  14.     }
  15.  
  16.     /** @see Exception#Exception(String). **/
  17.     public ServiceException(final String message) {
  18.         super(message);
  19.     }
  20.  
  21.     /** @see Exception#Exception(Throwable). **/
  22.     public ServiceException(final Throwable cause) {
  23.         super(cause);
  24.     }
  25.  
  26.     /** @see Exception#Exception(String, Throwable). **/
  27.     public ServiceException(final String message, final Throwable cause) {
  28.         super(message, cause);
  29.     }
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement