Merge changes I6265d077,I0be9473e,If481ebdb
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / DeserializationException.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.impl.codec;
9
10 public class DeserializationException extends Exception {
11
12     public DeserializationException() {
13     }
14
15     public DeserializationException(String message) {
16         super(message);
17     }
18
19     public DeserializationException(Throwable cause) {
20         super(cause);
21     }
22
23     public DeserializationException(String message, Throwable cause) {
24         super(message, cause);
25     }
26
27     public DeserializationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
28         super(message, cause, enableSuppression, writableStackTrace);
29     }
30
31 }