Refactor InferenceAction
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / ReactorException.java
index 9ab46d9f21c6edeee03a55974c4fa54b097480ca..b41c9b2012702055449a8faef6fb94af03fb9cad 100644 (file)
@@ -10,20 +10,20 @@ package org.opendaylight.yangtools.yang.parser.spi.meta;
 import com.google.common.base.Preconditions;
 import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
 
-
 public class ReactorException extends Exception {
-
     private static final long serialVersionUID = 1L;
+
     private final ModelProcessingPhase phase;
     private final SourceIdentifier sourceIdentifier;
 
-    public ReactorException(ModelProcessingPhase phase, String message, SourceIdentifier sourceId, Throwable cause) {
+    public ReactorException(final ModelProcessingPhase phase, final String message, final SourceIdentifier sourceId,
+            final Throwable cause) {
         super(message, cause);
         this.phase = Preconditions.checkNotNull(phase);
         this.sourceIdentifier = sourceId;
     }
 
-    public ReactorException(ModelProcessingPhase phase, String message, SourceIdentifier sourceId) {
+    public ReactorException(final ModelProcessingPhase phase, final String message, final SourceIdentifier sourceId) {
         super(message);
         this.phase = Preconditions.checkNotNull(phase);
         this.sourceIdentifier = sourceId;