Sha256: 43e2f2f910642218e7cc8e1557c2e2bb6084d2f00072813301b929cdfc3cf7a2
Contents?: true
Size: 502 Bytes
Versions: 2
Compression:
Stored size: 502 Bytes
Contents
# the main module module TheArrayComparator # exceptions which are going to be raised under # certain conditions module Exceptions # Used when one tries to add an unknown # probe type to check for class UnknownCheckType < Exception end # Used if one tries to register an # incompatible comparator class IncompatibleComparator < Exception end # Used if one tries to delete an # unexisting probe class CheckDoesNotExist < Exception end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
the_array_comparator-0.2.0 | lib/the_array_comparator/exceptions.rb |
the_array_comparator-0.1.1 | lib/the_array_comparator/exceptions.rb |