rosette-proj/rosette-core

View on GitHub
lib/rosette/preprocessors/errors.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: UTF-8

module Rosette
  module Preprocessors

    # Errors that can be raised during pre-processing.
    module Errors
      # Raised if a preprocessor doesn't know how to process the object given
      # to it.
      class UnsupportedObjectError < StandardError; end
    end

  end
end