Sha256: 4ff13234da2ba0af7ab88e6c919cedb42c1f87c197423431f8226c163c5d69a1

Contents?: true

Size: 841 Bytes

Versions: 3

Compression:

Stored size: 841 Bytes

Contents

# frozen-string-literal: true
#
# Copyright (C) 2019 Thomas Baron
#
# This file is part of term_utils.
#
# term_utils is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# term_utils is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with term_utils.  If not, see <https://www.gnu.org/licenses/>.
module TermUtils
  module AP
    # Syntax error.
    class SyntaxError < StandardError
      def initialize(msg)
        super
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
term_utils-0.3.2 lib/term_utils/ap/syntax_error.rb
term_utils-0.3.1 lib/term_utils/ap/syntax_error.rb
term_utils-0.3.0 lib/term_utils/ap/syntax_error.rb