Sha256: 15b79dc226c120902b944e5cc19f7b677dd4544758229227c6c0d1fbc570dcfc
Contents?: true
Size: 573 Bytes
Versions: 115
Compression:
Stored size: 573 Bytes
Contents
# Define some basic Sprockets error classes module Sprockets class Error < StandardError; end class ArgumentError < Error; end class CircularDependencyError < Error; end class ContentTypeMismatch < Error; end class EncodingError < Error; end class FileNotFound < Error; end class FileOutsidePaths < Error; end class UnserializeError < Error; end module EngineError attr_accessor :sprockets_annotation def message [super, sprockets_annotation].compact.join("\n") end end end
Version data entries
115 entries across 90 versions & 18 rubygems