EGI-FCTF/rOCCI-core

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

Summary

Maintainability
A
0 mins
Test Coverage
module Occi
  module Core
    # Wrapper for all custom error classes. For details on intended
    # use, see specific error classes within this module.
    module Errors; end
  end
end

Dir[File.join(File.dirname(__FILE__), 'errors', '*.rb')].each { |file| require file.gsub('.rb', '') }