class Exceptions::MissingFileError

Public Class Methods

new(msg = "Couldn't find file") click to toggle source
Calls superclass method
# File lib/senkyoshi/exceptions.rb, line 24
def initialize(msg = "Couldn't find file")
  super(msg)
end