summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.2/lib/kramdown/error.rb
blob: 394fb77ecd1c510433931316e5a73d3806da78b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- coding: utf-8; frozen_string_literal: true -*-
#
#--
# Copyright (C) 2009-2026 Thomas Leitner <t_leitner@gmx.at>
#
# This file is part of kramdown which is licensed under the MIT.
#++
#

module Kramdown

  # This error is raised when an error condition is encountered.
  #
  # *Note* that this error is only raised by the support framework for the parsers and converters.
  class Error < RuntimeError; end

end