blob: fc759767f4c45682b75e0ebdae206c60cf24e5ce [file] [log] [blame]
Alex Kormukhinc9b7bd72022-02-18 21:04:14 +03001namespace java thrift.test.voidmethexceptions
2
3exception TExampleException {
4 1: required string message;
5}
6
7service TAppService01 {
8 string returnString(1: string msg, 2: bool throwException) throws (1:TExampleException error);
9 void returnVoidThrows(1: string msg, 2: bool throwException) throws (1:TExampleException error);
10 void returnVoidNoThrowsRuntimeException(1: string msg, 2: bool throwException);
11 void returnVoidNoThrowsTApplicationException(1: string msg, 2: bool throwException);
12 oneway void onewayVoidNoThrows(1: string msg, 2: bool throwException);
13}