Fix checkstyle in yang-parser-spi
[yangtools.git] / yang / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / MissingSubstatementException.java
index d2570dbed771952e82ec106cdf2e2196631eff87..70b0dcf752cf8ff9f8c46ff533272db8b082405a 100644 (file)
@@ -12,12 +12,13 @@ import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
 import org.opendaylight.yangtools.yang.parser.spi.source.StatementSourceReference;
 
 /**
- * Thrown when there was Missing element in yang file
+ * Thrown when there was Missing element in yang file.
  */
 public class MissingSubstatementException extends SourceException {
     private static final long serialVersionUID = 1L;
 
-    public MissingSubstatementException(@Nonnull final String message, @Nonnull final StatementSourceReference source) {
+    public MissingSubstatementException(@Nonnull final String message,
+            @Nonnull final StatementSourceReference source) {
         super(message, source);
     }