1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
## -*- Ruby -*-
## XML::DOM
## 1998-2001 by yoshidam
##
module XML
module DOM
=begin
== Class XML::DOM::DOMException
=== superclass
Exception
DOM exception.
=end
class DOMException<Exception
INDEX_SIZE_ERR = 1
WSTRING_SIZE_ERR = 2
HIERARCHY_REQUEST_ERR = 3
WRONG_DOCUMENT_ERR = 4
INVALID_NAME_ERR = 5
NO_DATA_ALLOWED_ERR = 6
NO_MODIFICATION_ALLOWED_ERR = 7
NOT_FOUND_ERR = 8
NOT_SUPPORTED_ERR = 9
INUSE_ATTRIBUTE_ERR = 10
## [DOM2]
INVALID_STATE_ERR = 11
SYNTAX_ERR = 12
INVALID_MODIFICATION_ERR = 13
NAMESPACE_ERR = 14
INVALIUD_ACCESS_ERR = 14
ERRMSG = [
"no error",
"index size",
"wstring size",
"hierarchy request",
"wrong document",
"invalid name",
"no data allowed",
"no modification allowed",
"not found",
"not supported",
"inuse attribute",
## [DOM2]
"invalid state",
"syntax error",
"invalid modification",
"namescape erorr",
"invaliud access"
]
=begin
=== Class Methods
--- DOMException.new(code = 0)
generate DOM exception.
=end
def initialize(code = 0)
@code = code
end
=begin
=== Methods
--- DOMException#code()
return code of exception.
=end
def code
@code
end
=begin
--- DOMException#to_s()
return the string representation of the error.
=end
def to_s
ERRMSG[@code].dup
end
end
end
end
|