Sha256: 440aad3b0809487983d82d9a7d11853571b23df1cfa889bc286b8abc39be41a5

Contents?: true

Size: 1.21 KB

Versions: 3

Compression:

Stored size: 1.21 KB

Contents

# frozen_string_literal: true
#
# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
#
# ronin-support is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ronin-support 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with ronin-support.  If not, see <https://www.gnu.org/licenses/>.
#

module Ronin
  module Recon
    #
    # Base class for all {Ronin::Recon} exceptions.
    #
    class Exception < RuntimeError
    end

    #
    # Indicates that a value string could not be parsed.
    #
    class UnknownValue < Exception
    end

    #
    # Indicates invalid YAML configuration.
    #
    class InvalidConfig < Exception
    end

    #
    # Indicates an invalid YAML configuration file.
    #
    class InvalidConfigFile < InvalidConfig
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ronin-recon-0.1.0 lib/ronin/recon/exceptions.rb
ronin-recon-0.1.0.rc2 lib/ronin/recon/exceptions.rb
ronin-recon-0.1.0.rc1 lib/ronin/recon/exceptions.rb