Sha256: 56131a5e61ec8234cb8b604a26936077d4e6f1990bbfedef6df0c00eff9ef5e6
Contents?: true
Size: 1.96 KB
Versions: 8
Compression:
Stored size: 1.96 KB
Contents
module Celerity module Exception # # Superclass for all Celerity exceptions. # class CelerityException < StandardError; end # # This exception is thrown if an attempt is made to access an object that doesn't exist # class UnknownObjectException < CelerityException; end # # This exception is thrown if an attempt is made to access an object that is in a disabled state # class ObjectDisabledException < CelerityException; end # # This exception is thrown if an attempt is made to access a frame that cannot be found # class UnknownFrameException < CelerityException; end # # This exception is thrown if an attempt is made to access a form that cannot be found # class UnknownFormException < CelerityException; end # # This exception is thrown if an attempt is made to access an object that is in a read-only state # class ObjectReadOnlyException < CelerityException; end # # This exception is thrown if an attempt is made to access an object when the specified value cannot be found # class NoValueFoundException < CelerityException; end # # This exception gets raised if the how argument is wrong. # class MissingWayOfFindingObjectException < CelerityException; end # # This exception is raised if an attempt is made to access a table row that doesn't exist # class UnknownRowException < CelerityException; end # # This exception is raised if an attempt is made to access a table cell that doesn't exist # class UnknownCellException < CelerityException; end # # This exception is thrown if an http error, such as a 404, 500 etc is encountered while navigating # class NavigationException < CelerityException; end # # This exception is thrown if an unexpected content type is returned by the server. # class UnexpectedPageException < CelerityException; end end # Exception end # Celerity
Version data entries
8 entries across 8 versions & 3 rubygems