7 lines
116 B
Ruby
7 lines
116 B
Ruby
|
module Exceptions
|
||
|
|
||
|
class NotAuthorized < StandardError; end
|
||
|
class UnprocessableEntity < StandardError; end
|
||
|
|
||
|
end
|