instiki/vendor/rails/activesupport/lib/active_support/multibyte/exceptions.rb

8 lines
188 B
Ruby
Raw Normal View History

# encoding: utf-8
module ActiveSupport #:nodoc:
module Multibyte #:nodoc:
# Raised when a problem with the encoding was found.
class EncodingError < StandardError; end
end
end