Exception: OAI::ArgumentException

Inherits:
Exception
  • Object
show all
Defined in:
lib/oai/exception.rb

Instance Attribute Summary

Attributes inherited from Exception

#code

Instance Method Summary collapse

Constructor Details

#initializeArgumentException

Returns a new instance of ArgumentException.



16
17
18
19
20
21
# File 'lib/oai/exception.rb', line 16

def initialize()
  super('The request includes ' \
  'illegal arguments, is missing required arguments, includes a ' \
  'repeated argument, or values for arguments have an illegal syntax.',
  'badArgument')
end