# # ----------------------------------------------------------------------- # Copyright © 2012 ShepHertz Technologies Pvt Ltd. All rights reserved. # ----------------------------------------------------------------------- require 'App42Exception.rb' class App42LimitException < App42Exception attr_accessor :http_error_code, :app_error_code, :detailMessage def initialize(detailMessage, http_error_code, app_error_code) super(detailMessage,http_error_code,app_error_code) end end