class MusicUtils::InvalidNote

This exception its raised when a given note is invalid

Attributes

note[R]

Public Class Methods

new(msg, original=$!, note) click to toggle source
Calls superclass method
# File lib/music-utils/errors/note_errors.rb, line 8
def initialize(msg, original=$!, note)
  super(msg, original)
  @note = note
end