class Exceptionally::Unauthorized

Public Class Methods

new(message = nil) click to toggle source
Calls superclass method Exceptionally::Error::new
# File lib/exceptionally/exceptions.rb, line 27
def initialize(message = nil)
  super(message, 401, "Unauthorized")
end