Formatting applied to aaa-authn-idpmapping
[aaa.git] / aaa-idp-mapping / src / main / java / org / opendaylight / aaa / idpmapping / UndefinedValueException.java
index d3e429ce3f326434725608d8ca032349d02a91bf..7200da3d950cd10f51ac23b575ade3d1c0e86fdc 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * Copyright (C) 2014 Red Hat
- * All rights reserved.
+ * Copyright (c) 2014 Red Hat, Inc.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
@@ -11,24 +10,25 @@ package org.opendaylight.aaa.idpmapping;
 /**
  * Exception thrown when a statement references an undefined value.
  *
- * @author John Dennis <jdennis@redhat.com>
+ * @author John Dennis &lt;jdennis@redhat.com&gt;
  */
 
 public class UndefinedValueException extends RuntimeException {
-  
-  private static final long serialVersionUID = -1607453931670834435L;
 
-  public UndefinedValueException() {}
+    private static final long serialVersionUID = -1607453931670834435L;
 
-  public UndefinedValueException(String message) {
-    super(message);
-  }
+    public UndefinedValueException() {
+    }
 
-  public UndefinedValueException(Throwable cause) {
-    super(cause);
-  }
+    public UndefinedValueException(String message) {
+        super(message);
+    }
 
-  public UndefinedValueException(String message, Throwable cause) {
-    super(message, cause);
-  }
+    public UndefinedValueException(Throwable cause) {
+        super(cause);
+    }
+
+    public UndefinedValueException(String message, Throwable cause) {
+        super(message, cause);
+    }
 }