class Warp::Dir::Errors::PointNotFound

Public Class Methods

new(point) click to toggle source
Calls superclass method Warp::Dir::Errors::InstanceError::new
# File lib/warp/dir/errors.rb, line 49
def initialize(point)
  self.instance = point
  super color_error('Point ', point.to_s, ' was not found.')
end