class LastbillClient::Error::NotFound

@author ciappa_m@modulotech.fr 404 error sent by Lastbill server

Public Class Methods

new(msg = "404 Not Found") click to toggle source
Calls superclass method LastbillClient::Error::Generic::new
# File lib/lastbill_client/error/not_found.rb, line 8
def initialize(msg = "404 Not Found")
  super(status: :not_found, message: msg)
end