EGI-FCTF/rOCCI-core

View on GitHub
lib/occi/core/errors/parser_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Occi
  module Core
    module Errors
      # Custom error class indicating internal parser
      # errors or non-compliance with the expected interface.
      #
      # @author Boris Parak <parak@cesnet.cz>
      class ParserError < StandardError; end
    end
  end
end