Sha256: c57e15ed526c9d667fef419bd238f2fb200f4e9d3ed079e25f7495e9a8c15ca2

Contents?: true

Size: 1.04 KB

Versions: 18

Compression:

Stored size: 1.04 KB

Contents

#
# Error messages and exception class
#

module YAML

	#
	# Error messages
	#

	ERROR_NO_HEADER_NODE = "With UseHeader=false, the node Array or Hash must have elements"
	ERROR_NEED_HEADER = "With UseHeader=false, the node must be an Array or Hash"
	ERROR_BAD_EXPLICIT = "Unsupported explicit transfer: '%s'"
    ERROR_MANY_EXPLICIT = "More than one explicit transfer"
	ERROR_MANY_IMPLICIT = "More than one implicit request"
	ERROR_NO_ANCHOR = "No anchor for alias '%s'"
	ERROR_BAD_ANCHOR = "Invalid anchor: %s"
	ERROR_MANY_ANCHOR = "More than one anchor"
	ERROR_ANCHOR_ALIAS = "Can't define both an anchor and an alias"
	ERROR_BAD_ALIAS = "Invalid alias: %s"
	ERROR_MANY_ALIAS = "More than one alias"
	ERROR_ZERO_INDENT = "Can't use zero as an indentation width"
	ERROR_UNSUPPORTED_VERSION = "This release of YAML.rb does not support YAML version %s"
	ERROR_UNSUPPORTED_ENCODING = "Attempt to use unsupported encoding: %s"

	#
	# YAML Error classes
	#
    
	class Error < StandardError; end
	class ParseError < Error; end
    class TypeError < StandardError; end

end

Version data entries

18 entries across 18 versions & 4 rubygems

Version Path
rubysl-yaml-1.1.0 lib/yaml/error.rb
rubysl-yaml-1.0.1 lib/yaml/error.rb
ruby_on_ruby-0.0.1 vendor/javascripts/emscripted-ruby/lib/yaml/error.rb
shoesgem-0.1514.0 shoes/ruby/lib/yaml/error.rb
shoesgem-0.1480.0 shoes/ruby/lib/yaml/error.rb
shoesgem-0.1469.0 shoes/ruby/lib/yaml/error.rb
shoesgem-0.1430.0 shoes/ruby/lib/yaml/error.rb
shoesgem-0.1429.0 shoes/ruby/lib/yaml/error.rb
shoesgem-0.1428.0 shoes/ruby/lib/yaml/error.rb
shoesgem-0.1426.0 shoes/ruby/lib/yaml/error.rb
shoesgem-0.1424.0 shoes/ruby/lib/yaml/error.rb
mkrf-0.1.2 test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb
mkrf-0.1.0 test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb
mkrf-0.1.1 test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb
mkrf-0.2.1 test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb
mkrf-0.2.2 test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb
mkrf-0.2.0 test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb
mkrf-0.2.3 test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb