summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/rexml-3.4.4/lib/rexml/validation/validationexception.rb
blob: 78cd63fd04662c97b145deb0f787d233bc15ae62 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: false
module REXML
  module Validation
    class ValidationException < RuntimeError
      def initialize msg
        super
      end
    end
  end
end