14 lines
201 B
Crystal
14 lines
201 B
Crystal
module AuthD
|
|
class Exception < ::Exception
|
|
end
|
|
|
|
class UserNotFound < ::Exception
|
|
end
|
|
|
|
class AuthenticationInfoLacking < ::Exception
|
|
end
|
|
|
|
class AdminAuthorizationException < ::Exception
|
|
end
|
|
end
|