require 'actv/error/server_error' module ACTV class Error # Raised when Active returns the HTTP status code 500 class InternalServerError < ACTV::Error::ServerError HTTP_STATUS_CODE = 500 MESSAGE = "Something is technically wrong." end end end