7 lines
140 B
Ruby
7 lines
140 B
Ruby
module I18n
|
|
def self.just_raise_that_exception(*args)
|
|
raise args.first
|
|
end
|
|
end
|
|
|
|
I18n.exception_handler = :just_raise_that_exception
|