Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.
Kowshik Prakasam and Pieter Noordhuis edited this page Feb 28, 2013 · 1 revision

This is only a response. If an error occurs while executing a request, it is captured and returned as an ErrorResponse.

Response

  • message: Error message.
  • data: Unused.
  • backtrace: Unused.

Definition

package warden;

message ErrorResponse {
  optional string message = 2;
  optional string data = 4;
  repeated string backtrace = 3;
}