aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/nbi/exceptions/ApiError.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/nbi/exceptions/ApiError.java')
-rw-r--r--src/main/java/org/onap/nbi/exceptions/ApiError.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/org/onap/nbi/exceptions/ApiError.java b/src/main/java/org/onap/nbi/exceptions/ApiError.java
index 71111ea..dd54b6f 100644
--- a/src/main/java/org/onap/nbi/exceptions/ApiError.java
+++ b/src/main/java/org/onap/nbi/exceptions/ApiError.java
@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
+
package org.onap.nbi.exceptions;
import javax.xml.bind.annotation.XmlAccessType;
@@ -32,7 +33,8 @@ public class ApiError {
@XmlElement(required = true)
protected String infoURL;
- public ApiError() {}
+ public ApiError() {
+ }
public ApiError(String code, String message, String description, String infoURL) {
this.code = code;
@@ -73,4 +75,3 @@ public class ApiError {
this.infoURL = infoURL;
}
}
-