class Motion::BadSecretError
Attributes
minimum_bytes[R]
Public Class Methods
new(minimum_bytes)
click to toggle source
Calls superclass method
# File lib/motion/errors.rb, line 156 def initialize(minimum_bytes) super( "The secret that you provided is not long enough. It must be at " \ "least #{minimum_bytes} bytes long." ) end