diff --git a/src/main/java/com/safetypin/authentication/exception/ApiException.java b/src/main/java/com/safetypin/authentication/exception/ApiException.java new file mode 100644 index 0000000000000000000000000000000000000000..3892001c7d91cda5e296e49cc83515464e1b0cc0 --- /dev/null +++ b/src/main/java/com/safetypin/authentication/exception/ApiException.java @@ -0,0 +1,11 @@ +package com.safetypin.authentication.exception; + +import java.io.IOException; + +public class ApiException extends IOException { + + public ApiException(String message, int statusCode) { + super(message); + } + +} \ No newline at end of file