NullVoxPopuli/meshchat

View on GitHub
lib/meshchat/network/errors.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module Meshchat
  module Network
    module Errors
      class NotAuthorized < StandardError; end
      class Forbidden < StandardError; end
      class BadRequest < StandardError; end
      class MessageTypeNotRecognized < StandardError; end
    end
  end
end