class Doing::Errors::UserCancelled

Public Class Methods

new(msg = 'Cancelled', topic = 'Exited:') click to toggle source
Calls superclass method Doing::Errors::DoingNoTraceError::new
# File lib/doing/errors.rb, line 18
def initialize(msg = 'Cancelled', topic = 'Exited:')
  super(msg, level: :warn, topic: topic, exit_code: 1)
end