Exception: Cask::AbstractCaskErrorWithToken Private

Inherits:
CaskError show all
Defined in:
cask/exceptions.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Abstract cask error containing a cask token.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(token, reason = nil) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:



35
36
37
38
39
40
# File 'cask/exceptions.rb', line 35

def initialize(token, reason = nil)
  super()

  @token = T.let(token.to_s, String)
  @reason = T.let(reason.to_s, String)
end

Instance Attribute Details

#reasonString (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



32
33
34
# File 'cask/exceptions.rb', line 32

def reason
  @reason
end

#tokenString (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



29
30
31
# File 'cask/exceptions.rb', line 29

def token
  @token
end