Merge "Small fix to make Eclipse happy"
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / rest / impl / UnsupportedJsonFormatException.java
1 package org.opendaylight.controller.sal.rest.impl;
2
3 public class UnsupportedJsonFormatException extends Exception {
4
5     private static final long serialVersionUID = -1741388894406313402L;
6
7     public UnsupportedJsonFormatException() {
8         super();
9     }
10
11     public UnsupportedJsonFormatException(String message, Throwable cause) {
12         super(message, cause);
13     }
14
15     public UnsupportedJsonFormatException(String message) {
16         super(message);
17     }
18
19     public UnsupportedJsonFormatException(Throwable cause) {
20         super(cause);
21     }
22
23 }