Do not pretty-print body class
[yangtools.git] / data / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / tree / IncorrectDataStructureException.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.api.schema.tree;
9
10 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
11
12 /**
13  * Exception thrown when a proposed change fails validation before being applied into the datastore
14  * because of incorrect structure of user supplied data.
15  */
16 public class IncorrectDataStructureException extends DataValidationFailedException {
17     private static final long serialVersionUID = 1L;
18
19     public IncorrectDataStructureException(final YangInstanceIdentifier path, final String message,
20             final Throwable cause) {
21         super(path, message, cause);
22     }
23
24     public IncorrectDataStructureException(final YangInstanceIdentifier path, final String message) {
25         super(path, message);
26     }
27 }