Exception: Metior::UnsupportedError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/metior/errors.rb

Overview

This error is raised when an operation is not supported by the currently used VCS or its adapter implementation

Author:

Instance Method Summary (collapse)

Constructor Details

- (UnsupportedError) initialize(adapter)

Creates a new instance of this error

Parameters:

  • adapter (Module)

    The VCS adapter



63
64
65
# File 'lib/metior/errors.rb', line 63

def initialize(adapter)
  super 'Operation not supported by the current VCS adapter (:%s).' % adapter.id
end