Promote SchemaSourceRepresentation
[yangtools.git] / parser / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / SomeModifiersUnresolvedException.java
index ef3b151d96a1146c2f6ff601e3ac5667cf32e454..02df2975af90ca17c23f31c827e98b03e19e0a86 100644 (file)
@@ -7,14 +7,14 @@
  */
 package org.opendaylight.yangtools.yang.parser.spi.meta;
 
-import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
+import org.opendaylight.yangtools.yang.model.api.source.SourceIdentifier;
 
 public class SomeModifiersUnresolvedException extends ReactorException {
-
+    @java.io.Serial
     private static final long serialVersionUID = 1L;
 
-    public SomeModifiersUnresolvedException(ModelProcessingPhase phase, SourceIdentifier sourceId, Throwable cause) {
+    public SomeModifiersUnresolvedException(final ModelProcessingPhase phase, final SourceIdentifier sourceId,
+            final Throwable cause) {
         super(phase, "Some of " + phase + " modifiers for statements were not resolved.", sourceId, cause);
     }
-
 }