Biorąc pod uwagę, o czym mówi dokumentacja Ruby Core Exception
, z której dziedziczą wszystkie inne błędy#message
Zwraca wynik wywołania wyjątku.to_s. Zwykle zwraca to wiadomość lub nazwę wyjątku. Dostarczając metodę to_str, wyjątki zgadzają się na użycie tam, gdzie oczekuje się ciągów.
http://ruby-doc.org/core-1.9.3/Exception.html#method-i-message
Wybrałbym redefinicję to_s
/ to_str
lub inicjalizator. Oto przykład, w którym chcemy wiedzieć, w sposób w większości czytelny dla człowieka, kiedy usługa zewnętrzna czegoś nie zrobiła.
UWAGA: Druga strategia poniżej wykorzystuje ładne metody łańcuchowe rails, takie jak demodualize
, które mogą być nieco skomplikowane, a zatem potencjalnie nierozsądne w przypadku wyjątków. W razie potrzeby możesz również dodać więcej argumentów do podpisu metody.
Zastępowanie strategii #to_s, a nie #to_str, działa inaczej
module ExternalService
class FailedCRUDError < ::StandardError
def to_s
'failed to crud with external service'
end
end
class FailedToCreateError < FailedCRUDError; end
class FailedToReadError < FailedCRUDError; end
class FailedToUpdateError < FailedCRUDError; end
class FailedToDeleteError < FailedCRUDError; end
end
Wyjście konsoli
begin; raise ExternalService::FailedToCreateError; rescue => e; e.message; end
# => "failed to crud with external service"
begin; raise ExternalService::FailedToCreateError, 'custom message'; rescue => e; e.message; end
# => "failed to crud with external service"
begin; raise ExternalService::FailedToCreateError.new('custom message'); rescue => e; e.message; end
# => "failed to crud with external service"
raise ExternalService::FailedToCreateError
# ExternalService::FailedToCreateError: failed to crud with external service
Zastępowanie #initialize Strategy
To strategia najbliższa implementacjom, których używałem w railsach. Jak wspomniano powyżej, używa się demodualize
, underscore
i humanize
ActiveSupport
metod. Ale można to łatwo usunąć, tak jak w poprzedniej strategii.
module ExternalService
class FailedCRUDError < ::StandardError
def initialize(service_model=nil)
super("#{self.class.name.demodulize.underscore.humanize} using #{service_model.class}")
end
end
class FailedToCreateError < FailedCRUDError; end
class FailedToReadError < FailedCRUDError; end
class FailedToUpdateError < FailedCRUDError; end
class FailedToDeleteError < FailedCRUDError; end
end
Wyjście konsoli
begin; raise ExternalService::FailedToCreateError; rescue => e; e.message; end
# => "Failed to create error using NilClass"
begin; raise ExternalService::FailedToCreateError, Object.new; rescue => e; e.message; end
# => "Failed to create error using Object"
begin; raise ExternalService::FailedToCreateError.new(Object.new); rescue => e; e.message; end
# => "Failed to create error using Object"
raise ExternalService::FailedCRUDError
# ExternalService::FailedCRUDError: Failed crud error using NilClass
raise ExternalService::FailedCRUDError.new(Object.new)
# RuntimeError: ExternalService::FailedCRUDError using Object
Narzędzie demonstracyjne
To jest demo pokazujące ratowanie i wysyłanie wiadomości z powyższej implementacji. Klasa podnosząca wyjątki to fałszywe API do Cloudinary. Po prostu wrzuć jedną z powyższych strategii do konsoli rails, a następnie wykonaj tę.
require 'rails' # only needed for second strategy
module ExternalService
class FailedCRUDError < ::StandardError
def initialize(service_model=nil)
@service_model = service_model
super("#{self.class.name.demodulize.underscore.humanize} using #{@service_model.class}")
end
end
class FailedToCreateError < FailedCRUDError; end
class FailedToReadError < FailedCRUDError; end
class FailedToUpdateError < FailedCRUDError; end
class FailedToDeleteError < FailedCRUDError; end
end
# Stub service representing 3rd party cloud storage
class Cloudinary
def initialize(*error_args)
@error_args = error_args.flatten
end
def create_read_update_or_delete
begin
try_and_fail
rescue ExternalService::FailedCRUDError => e
e.message
end
end
private def try_and_fail
raise *@error_args
end
end
errors_map = [
# Without an arg
ExternalService::FailedCRUDError,
ExternalService::FailedToCreateError,
ExternalService::FailedToReadError,
ExternalService::FailedToUpdateError,
ExternalService::FailedToDeleteError,
# Instantiated without an arg
ExternalService::FailedCRUDError.new,
ExternalService::FailedToCreateError.new,
ExternalService::FailedToReadError.new,
ExternalService::FailedToUpdateError.new,
ExternalService::FailedToDeleteError.new,
# With an arg
[ExternalService::FailedCRUDError, Object.new],
[ExternalService::FailedToCreateError, Object.new],
[ExternalService::FailedToReadError, Object.new],
[ExternalService::FailedToUpdateError, Object.new],
[ExternalService::FailedToDeleteError, Object.new],
# Instantiated with an arg
ExternalService::FailedCRUDError.new(Object.new),
ExternalService::FailedToCreateError.new(Object.new),
ExternalService::FailedToReadError.new(Object.new),
ExternalService::FailedToUpdateError.new(Object.new),
ExternalService::FailedToDeleteError.new(Object.new),
].inject({}) do |errors, args|
begin
errors.merge!( args => Cloudinary.new(args).create_read_update_or_delete)
rescue => e
binding.pry
end
end
if defined?(pp) || require('pp')
pp errors_map
else
errors_map.each{ |set| puts set.inspect }
end
rescue Exception => e
. Jest szerszy niż domyślny,rescue => e
który rozciąga się odStandardError
i przechwytuje wszystko, w tym Ctrl + C. Zrobiłbymrescue MyCustomError => e
.