Sha256: 0c1913c8d03435cc71d4f848b19fdb783e7c8f1c0a19da3f5aca33549efcd59f

Contents?: true

Size: 476 Bytes

Versions: 2

Compression:

Stored size: 476 Bytes

Contents

module MovingsignApi
  # Base error for all MovingsignApi errors.
  class Error < StandardError

  end

  # Raised when a method has been be implemented, usually due to improperly subclassed class or code that is in
  # progress.
  class NotImplementedError < Error

  end

  # Raised when an input is invalid in the given context.
  class InvalidInputError < Error

  end

  # Raised when there are errors reading/writing to the serial port
  class IOError < Error

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
movingsign_api-0.0.2 lib/movingsign_api/errors.rb
movingsign_api-0.0.1 lib/movingsign_api/errors.rb