module Busibe::Error

class Error::ServerError < Busibe::Error::Error; end

class Error::ServiceUnavailable < Error::ServerError; end

class Error::ClientError < Busibe::Error::Error; end

class Error::Forbidden < Error::ClientError; end

class Error::BadRequest < Error::ClientError; end