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