class ROBundle::InvalidAggregateError
This exception is raised when an invalid aggregate is detected.
Public Class Methods
new(name)
click to toggle source
Create a new InvalidAggregateError with the invalid object (file or URI) supplied.
Calls superclass method
# File lib/ro-bundle/exceptions.rb, line 24 def initialize(object) super("'#{object}' is not an absolute filename or a URI.") end