Merge "Fix checkListKey not checking actual/expected values"
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / ReactorException.java
1 /*
2  * Copyright (c) 2015 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.parser.spi.meta;
9
10 import com.google.common.base.Preconditions;
11
12
13 public class ReactorException extends Exception {
14
15     private static final long serialVersionUID = 1L;
16     private final ModelProcessingPhase phase;
17
18     public ReactorException(ModelProcessingPhase phase, String message, Throwable cause) {
19         super(message, cause);
20         this.phase = Preconditions.checkNotNull(phase);
21     }
22
23     public ReactorException(ModelProcessingPhase phase, String message) {
24         super(message);
25         this.phase = Preconditions.checkNotNull(phase);
26     }
27
28     public final ModelProcessingPhase getPhase() {
29         return phase;
30     }
31
32 }