Sha256: d9a8e0d6b770b4627f07040edb944611cf7e41c588d6463436c6a35f17aaf2c8

Contents?: true

Size: 588 Bytes

Versions: 3

Compression:

Stored size: 588 Bytes

Contents

#encoding: utf-8
module PointRb
  module Exceptions
    # Raised if file does not exist
    class FileNotFound < Exception; end

    # Raised if requested layout was not
    # available
    class LayoutNotFound < Exception; end

    # Raised if one has a layout with an
    # invalid syntax
    class SyntaxErrorInLayout < Exception; end

    # Raised if project path exists
    class ProjectPathExists < Exception; end

    # Raised if one tries to initialize a system
    # which has already been initialized
    class Exceptions::PointRbWasAlreadInitialized < Exception; end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pointrb-0.1.2 lib/pointrb/exceptions.rb
pointrb-0.1.1 lib/pointrb/exceptions.rb
pointrb-0.1.0 lib/pointrb/exceptions.rb