Merge "Fix missing format placeholder"
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / repo / api / MissingSchemaSourceException.java
index 17c9c906172fbb40f3d164e0fb9801405cbda403..2062a635516496682397f5bb1ce32d30bed329a7 100644 (file)
@@ -3,11 +3,12 @@
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/eplv10.html
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 package org.opendaylight.yangtools.yang.model.repo.api;
 
 import com.google.common.annotations.Beta;
+import com.google.common.base.Preconditions;
 
 /**
  * Exception thrown when a the specified schema source is not available.
@@ -16,11 +17,18 @@ import com.google.common.annotations.Beta;
 public class MissingSchemaSourceException extends SchemaSourceException {
     private static final long serialVersionUID = 1L;
 
-    public MissingSchemaSourceException(final String message) {
-        super(message);
+    private final SourceIdentifier id;
+
+    public MissingSchemaSourceException(final String message, final SourceIdentifier id) {
+        this(message, id, null);
+    }
+
+    public MissingSchemaSourceException(final String s, final SourceIdentifier id, final Throwable t) {
+        super(s, t);
+        this.id = Preconditions.checkNotNull(id);
     }
 
-    public MissingSchemaSourceException(final String message, final Throwable cause) {
-        super(message, cause);
+    public SourceIdentifier getSourceId() {
+        return id;
     }
 }