class ADAM6050::Password::FormatError

Format errors should be raised whenever a plain text password longer than 8 characters is passed. Note that only ascii characters are supported.

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/adam6050/password.rb, line 23
def initialize
  super 'Only ascii passwords of length 8 or less are supported'
end