Sha256: c2622cd3219a82ac667a142b9c425f838509f54228f6c73ae8fb2c7fcb4c6313

Contents?: true

Size: 701 Bytes

Versions: 3

Compression:

Stored size: 701 Bytes

Contents

module Rake end
module Rake::CompTree
  module Error
    # Base class for CompTree errors.
    class Base < StandardError ; end
    
    # Internal error inside 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

3 entries across 3 versions & 1 rubygems

Version Path
drake-0.8.4.1.0.16 lib/rake/comp_tree/error.rb
drake-0.8.4.1.0.17 lib/rake/comp_tree/error.rb
drake-0.8.4.1.0.18 lib/rake/comp_tree/error.rb