Sha256: e014e0c6e3285d206b72591271a78709eb59141ce62507a5fc329cb8a313dc4c
Contents?: true
Size: 611 Bytes
Versions: 6
Compression:
Stored size: 611 Bytes
Contents
module Etapper # Some attribute value is out of range or otherwise invalid for the eTapestry API. class BadValueError < StandardError; end # This value cannot be set by the client according to the eTapestry API specification. class ReadOnlyError < StandardError; end # A connection could not be made. The username or password may be invalid, or Etapper::Client.autoconnect # may be set to false and you didn't run 'connect' before calling an API method. class ConnectionError < StandardError; end # A required field was left empty. class RequiredFieldError < StandardError; end end
Version data entries
6 entries across 6 versions & 1 rubygems