aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/nbi/exceptions/TechnicalException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/nbi/exceptions/TechnicalException.java')
-rw-r--r--src/main/java/org/onap/nbi/exceptions/TechnicalException.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/org/onap/nbi/exceptions/TechnicalException.java b/src/main/java/org/onap/nbi/exceptions/TechnicalException.java
index 14d6321..f6cdd88 100644
--- a/src/main/java/org/onap/nbi/exceptions/TechnicalException.java
+++ b/src/main/java/org/onap/nbi/exceptions/TechnicalException.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 org.springframework.http.HttpStatus;
@@ -26,10 +27,8 @@ public class TechnicalException extends ApiException {
this.httpStatus = HttpStatus.INTERNAL_SERVER_ERROR;
}
-
public HttpStatus getHttpStatus() {
return httpStatus;
}
-
}