Upgrade to latest oparent
[aaf/authz.git] / authz-batch / src / main / java / com / att / authz / BatchException.java
1 /*******************************************************************************
2  * Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
3  *******************************************************************************/
4 package com.att.authz;
5
6 public class BatchException extends Exception {
7
8         /**
9          * 
10          */
11         private static final long serialVersionUID = -3877245367723491192L;
12
13         public BatchException() {
14         }
15
16         public BatchException(String message) {
17                 super(message);
18         }
19
20         public BatchException(Throwable cause) {
21                 super(cause);
22         }
23
24         public BatchException(String message, Throwable cause) {
25                 super(message, cause);
26         }
27
28         public BatchException(String message, Throwable cause,
29                         boolean enableSuppression, boolean writableStackTrace) {
30                 super(message, cause, enableSuppression, writableStackTrace);
31         }
32
33 }