ExternalAccessRolesController up
[portal.git] / portal-BE / src / main / java / org / onap / portal / exception / ExternalAuthSystemException.java
@@ -1,10 +1,8 @@
-/*
+/*-
  * ============LICENSE_START==========================================
  * ONAP Portal
  * ===================================================================
- * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
- * ===================================================================
- * Modifications Copyright (c) 2019 Samsung
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
  * ===================================================================
  *
  * Unless otherwise specified, all software contained herein is licensed
  *
  * ============LICENSE_END============================================
  *
- *
+ * 
  */
+package org.onap.portal.exception;
+
+public class ExternalAuthSystemException extends Exception {
 
-package org.onap.portal.domain.dto.ecomp;
+       private static final long serialVersionUID = -4576754924998287267L;
 
-public enum PortalRestStatusEnum{
-       OK("ok"),
-       WARN("WARNING"),
-       ERROR("error");
-       
-       private final String value;
-       PortalRestStatusEnum(String value){
-               this.value = value;
-       }
-       
-       @Override
-    public String toString() {
-        return value;
-    }
+       public ExternalAuthSystemException(String msg) {
+                  super(msg);
+          } 
 }