Cleanup checkstyle in yang-{data,model}-api
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / repo / api / MissingSchemaSourceException.java
index 2062a635516496682397f5bb1ce32d30bed329a7..21b795bd4035aaebfed834799bdac1fb288ce56f 100644 (file)
@@ -23,8 +23,8 @@ public class MissingSchemaSourceException extends SchemaSourceException {
         this(message, id, null);
     }
 
-    public MissingSchemaSourceException(final String s, final SourceIdentifier id, final Throwable t) {
-        super(s, t);
+    public MissingSchemaSourceException(final String message, final SourceIdentifier id, final Throwable cause) {
+        super(message, cause);
         this.id = Preconditions.checkNotNull(id);
     }