File tree Expand file tree Collapse file tree
apollo-service/src/main/java/com/qusion/apolloservice/exceptions Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ package com.qusion.apolloservice.exceptions
22
33/* * Added as a cause when there are "business" errors from the response of the endpoint
44 * (e.g. wrong password or username) */
5- class BusinessException (override val message : String? ) : Exception(message)
5+ open class BusinessException (override val message : String? ) : Exception(message)
66
77/* * Thrown by the http interceptor when there is 401 from the server */
88open class ExpiredSidException (override val message : String? ) : Exception(message)
99
1010/* * Thrown by ApolloService when refresh token mutation fails */
11- class ForceLogoutException (code : String ) : ExpiredSidException(code)
11+ open class ForceLogoutException (code : String ) : ExpiredSidException(code)
You can’t perform that action at this time.
0 commit comments