class Morpheus::Cli::CommandAborted
An error indicating the user declined to accept a confirmation prompt, assigned exit code 9
Public Class Methods
new(msg, args=[], optparse=nil, exit_code=nil)
click to toggle source
Calls superclass method
Morpheus::Cli::CommandError::new
# File lib/morpheus/cli/errors.rb, line 48 def initialize(msg, args=[], optparse=nil, exit_code=nil) super(msg, args, optparse, exit_code || 9) end