X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frest%2Fimpl%2FUnsupportedJsonFormatException.java;fp=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frest%2Fimpl%2FUnsupportedJsonFormatException.java;h=dccf29b05284ef0b70f6fa3d3c3ff1da31e26f6a;hb=1c2a0d378926c94951387932f5b98fc35b22fa66;hp=0000000000000000000000000000000000000000;hpb=83291dd59ee117454596081f09e1248e89551020;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/UnsupportedJsonFormatException.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/UnsupportedJsonFormatException.java new file mode 100644 index 0000000000..dccf29b052 --- /dev/null +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/UnsupportedJsonFormatException.java @@ -0,0 +1,23 @@ +package org.opendaylight.controller.sal.rest.impl; + +public class UnsupportedJsonFormatException extends Exception { + + private static final long serialVersionUID = -1741388894406313402L; + + public UnsupportedJsonFormatException() { + super(); + } + + public UnsupportedJsonFormatException(String message, Throwable cause) { + super(message, cause); + } + + public UnsupportedJsonFormatException(String message) { + super(message); + } + + public UnsupportedJsonFormatException(Throwable cause) { + super(cause); + } + +}