Sha256: 6425a2dc2df1f5c16c0ac2b036ef7ae44e4e6eebc9a8f2bfbbdfa813869b8cc4

Contents?: true

Size: 857 Bytes

Versions: 5

Compression:

Stored size: 857 Bytes

Contents

module LocalPac
  module Exceptions
    # raise if there are template syntax errrors
    class ErbTemplateHasSyntaxErrors < Exception; end

    # raised if Template does not exist
    class ErbTemplateIsUnknown < Exception; end

    # raised if Template does not exist
    class ConfigFileNotReadable < Exception; end

    # raised if listen statement is invalid
    class ServerListenStatementInvalid < Exception; end

    # raised if entered url is invalid
    class URLToSearchForInvalid < Exception; end

    # raised if pac file is invalid
    class PacFileInvalid < Exception; end

    # raised if request is invalid
    class GivenUrlInvalid < Exception; end

    # raised if pid file does not exist
    class PidFileDoesNotExist < Exception; end

    # raised if repository does not exist
    class RepositoryDoesNotExist < Exception; end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
local_pac-0.3.0 lib/local_pac/exceptions.rb
local_pac-0.2.3 lib/local_pac/exceptions.rb
local_pac-0.2.2 lib/local_pac/exceptions.rb
local_pac-0.2.1 lib/local_pac/exceptions.rb
local_pac-0.2.0 lib/local_pac/exceptions.rb