class Gnosis::Translators::RGSSAD::InvalidArchiveError

Exception raised when the decrypter is initialized with an invalid RGSSAD encrypted archive.

Public Class Methods

new(file, message = 'Invalid RGSSAD encrypted archive - %s') click to toggle source

@param [String] file the file which raised this exception @param [String] message message to be written – ‘file` is added to

this message through `sprintf`
Calls superclass method
# File lib/gnosis/translators/rgssad/invalid_archive_error.rb, line 10
def initialize(file, message = 'Invalid RGSSAD encrypted archive - %s')
  super(message % file)
end