diff options
| author | ser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-07 01:19:09 +0000 |
|---|---|---|
| committer | ser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-07 01:19:09 +0000 |
| commit | 5dd84ed6f3085230636aab7ab642efa773796c81 (patch) | |
| tree | 5108a5bf53e2b3f3bcd5713dabb488477772e8a0 /lib/rexml/validation/validationexception.rb | |
| parent | 3fc47df56baf9f5a89de1d28f6150e1cc94a6acd (diff) | |
| download | ruby-5dd84ed6f3085230636aab7ab642efa773796c81.tar.gz ruby-5dd84ed6f3085230636aab7ab642efa773796c81.tar.xz ruby-5dd84ed6f3085230636aab7ab642efa773796c81.zip | |
Forgot to add the validation files.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6591 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml/validation/validationexception.rb')
| -rw-r--r-- | lib/rexml/validation/validationexception.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/rexml/validation/validationexception.rb b/lib/rexml/validation/validationexception.rb new file mode 100644 index 000000000..4723d9e4d --- /dev/null +++ b/lib/rexml/validation/validationexception.rb @@ -0,0 +1,9 @@ +module REXML + module Validation + class ValidationException < RuntimeError + def initialize msg + super + end + end + end +end |
