Sha256: 680c809d6b8b45cb061d6b24945d4cb593933ce54dc5207dc79a1abc06700a47

Contents?: true

Size: 497 Bytes

Versions: 2

Compression:

Stored size: 497 Bytes

Contents

module MarilynRPC
  class MarilynError < StandardError; end
  
  # Error that occurs, when we recieve an broken envelope
  class BrokenEnvelopeError < MarilynError; end
  
  # Error that occurs, when the client tries to call an unknown service
  class UnknownServiceError < MarilynError; end

  # Error that occurs, when the client tries to call an service, that requires
  # authentication. The client must be authenticated before that call.
  class PermissionDeniedError < MarilynError; end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
marilyn-rpc-0.0.4 lib/marilyn-rpc/error.rb
marilyn-rpc-0.0.3 lib/marilyn-rpc/error.rb