All Downloads are FREE. Search and download functionalities are using the official Maven repository.

yamcs.api.exception.proto Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
syntax = "proto3";

package yamcs.api;

import "google/protobuf/any.proto";

option java_multiple_files = true;
option java_outer_classname = "ExceptionProto";
option java_package = "org.yamcs.api";

// Generic holder for an exception
message ExceptionMessage {
  int32 code = 1;
  string type = 2;
  string msg = 3;
  google.protobuf.Any detail = 4;
}

message FilterSyntaxException {
  // Begin line of the token where the exception occurs
  int32 beginLine = 1;

  // Begin column of the token where the exception occurs
  int32 beginColumn = 2;

  // End line of the token where the exception occurs
  int32 endLine = 3;

  // End column of the token where the exception occurs
  int32 endColumn = 4;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy