Exception: Vedeu::Error::NotImplemented Private

Inherits:
StandardError
  • Object
show all
Defined in:
lib/vedeu/error.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Raised to remind me (or client application developers) that the subclass implements the functionality sought.

Raises:

  • (Vedeu::Error::NotImplemented)

    When the method called should be handled by a subclass of the current class, or by the class including or extending the current module.

Instance Method Summary collapse

Instance Method Details

#messageString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns an error message.

Returns:

  • (String)


111
112
113
114
# File 'lib/vedeu/error.rb', line 111

def message
  'Subclasses of this class or classes including/extending ' \
  'this module should implement this method.'
end