class Camcorder::RecordingError

Attributes

key[R]

Public Class Methods

new(key) click to toggle source
# File lib/camcorder/errors.rb, line 7
def initialize(key)
  @key = key
end

Public Instance Methods

message() click to toggle source
# File lib/camcorder/errors.rb, line 10
def message
  "Recording for key #{key} has changed"
end