class TurboRex::Exception::NotNTSuccess

Public Class Methods

new(ntstatus='') click to toggle source
# File lib/turborex/exception.rb, line 56
def initialize(ntstatus='')
  @message = "The return value isn't one of NT_SUCCESS: #{ntstatus}"
end

Public Instance Methods

to_s() click to toggle source
# File lib/turborex/exception.rb, line 60
def to_s
  @message
end