Sha256: d58e41d85c3575d47dd8aa7b8e7fdbe9ae68b6e9a9489ec501c82b33068abd45

Contents?: true

Size: 697 Bytes

Versions: 9

Compression:

Stored size: 697 Bytes

Contents

module Rake::CompTree
  module Error
    # Base class for Rake::CompTree errors.
    class Base < StandardError ; end
    
    # Internal error inside Rake::CompTree.  Please send a bug report.
    class AssertionFailed < Base ; end
    
    # Bad arguments were passed to a method.
    class ArgumentError < Base ; end
    
    #
    # Attempt to redefine a Node.
    #
    # If you wish to only replace the function, set
    #   driver.nodes[name].function = some_new_lambda
    #
    class RedefinitionError < Base ; end
    
    # A Cyclic graph was detected.
    class CircularError < Base ; end

    # No function was defined for this node.
    class NoFunctionError < Base ; end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
drake-0.8.2.1.0.11 lib/rake/comp_tree/error.rb
drake-0.8.2.1.0.10 lib/rake/comp_tree/error.rb
drake-0.8.2.1.0.12 lib/rake/comp_tree/error.rb
drake-0.8.2.1.0.13 lib/rake/comp_tree/error.rb
drake-0.8.2.1.0.6 lib/rake/comp_tree/error.rb
drake-0.8.2.1.0.7 lib/rake/comp_tree/error.rb
drake-0.8.2.1.0.9 lib/rake/comp_tree/error.rb
drake-0.8.3.1.0.14 lib/rake/comp_tree/error.rb
drake-0.8.4.1.0.15 lib/rake/comp_tree/error.rb