class SimplyAES::Cipher::Error

SimplyAES::Cipher::Error is a wrapper for all errors raised by SimplyAES::Cipher

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/simply-aes/cipher/error.rb, line 11
def initialize(*args)
  @cause = $! # rubocop:disable Style/SpecialGlobalVars
  super
end