gems.multi_json-1.12.1.lib.multi_json.adapter_error.rb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sass-maven-plugin Show documentation
Show all versions of sass-maven-plugin Show documentation
A Maven Plugin that compiles Sass files.
module MultiJson
class AdapterError < ArgumentError
attr_reader :cause
def self.build(original_exception)
message = "Did not recognize your adapter specification (#{original_exception.message})."
new(message).tap do |exception|
exception.instance_eval do
@cause = original_exception
set_backtrace original_exception.backtrace
end
end
end
end
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy