module Simplenet module Exception class RetrieveError < StandardError def initialize(response) msg = "Could not retrieve data from Simplenet. " msg += "Response code: #{response.code}. Error: #{response.body}" super msg end end class EntityNotFoundError < StandardError def initialize(msg) msg ||= "Entity not found on simplenet" super msg end end class DuplicatedEntryError < StandardError def initialize(msg) msg ||= "Entity already exists on simplenet" super msg end end end end