@@ -85,7 +85,7 @@ public abstract class IBaseTest
85
85
*/
86
86
@ Nullable
87
87
@ SuppressWarnings ( "unchecked" )
88
- protected static <N > N property ( @ Nonnull final String p_name , @ Nonnull final Object p_object ) throws NoSuchFieldException , IllegalAccessException
88
+ protected static <N > N property ( @ Nonnull final String p_name , @ Nonnull final Object p_object ) throws IllegalAccessException
89
89
{
90
90
91
91
final Field l_field = CCommon .classfields ( p_object .getClass () )
@@ -230,9 +230,9 @@ protected static final class CAgentGenerator extends IBaseAgentGenerator<IAgent<
230
230
/**
231
231
* ctor
232
232
*
233
- * @throws Exception is thrown on any error
233
+ * @throws IOException on stream error
234
234
*/
235
- public CAgentGenerator () throws Exception
235
+ public CAgentGenerator () throws IOException
236
236
{
237
237
this ( "" , IActionGenerator .EMPTY , ILambdaStreamingGenerator .EMPTY );
238
238
}
@@ -241,9 +241,9 @@ public CAgentGenerator() throws Exception
241
241
* ctor
242
242
*
243
243
* @param p_asl asl code
244
- * @throws Exception is thrown on any error
244
+ * @throws IOException on stream error
245
245
*/
246
- public CAgentGenerator ( @ Nonnull final String p_asl ) throws Exception
246
+ public CAgentGenerator ( @ Nonnull final String p_asl ) throws IOException
247
247
{
248
248
this ( p_asl , IActionGenerator .EMPTY , ILambdaStreamingGenerator .EMPTY );
249
249
}
@@ -252,9 +252,8 @@ public CAgentGenerator( @Nonnull final String p_asl ) throws Exception
252
252
* ctor
253
253
*
254
254
* @param p_asl asl code
255
- * @throws Exception is thrown on any error
256
255
*/
257
- public CAgentGenerator ( @ Nonnull final InputStream p_asl ) throws Exception
256
+ public CAgentGenerator ( @ Nonnull final InputStream p_asl )
258
257
{
259
258
super ( p_asl , IActionGenerator .EMPTY , ILambdaStreamingGenerator .EMPTY );
260
259
}
@@ -265,10 +264,10 @@ public CAgentGenerator( @Nonnull final InputStream p_asl ) throws Exception
265
264
* @param p_asl asl code
266
265
* @param p_action actions
267
266
* @param p_lambda lambdas
268
- * @throws Exception is thrown on any error
267
+ * @throws IOException on stream error
269
268
*/
270
269
public CAgentGenerator ( @ Nonnull final String p_asl , @ Nonnull final IActionGenerator p_action , @ Nonnull final ILambdaStreamingGenerator p_lambda )
271
- throws Exception
270
+ throws IOException
272
271
{
273
272
super ( IOUtils .toInputStream ( p_asl , "UTF-8" ), p_action , p_lambda );
274
273
}
@@ -280,10 +279,10 @@ public CAgentGenerator( @Nonnull final String p_asl, @Nonnull final IActionGener
280
279
* @param p_action actions
281
280
* @param p_lambda lambdas
282
281
* @param p_variablebuilder variable builder
283
- * @throws Exception is thrown on any error
282
+ * @throws IOException on stream error
284
283
*/
285
284
public CAgentGenerator ( @ Nonnull final String p_asl , @ Nonnull final IActionGenerator p_action ,
286
- @ Nonnull final ILambdaStreamingGenerator p_lambda , @ Nonnull final IVariableBuilder p_variablebuilder ) throws Exception
285
+ @ Nonnull final ILambdaStreamingGenerator p_lambda , @ Nonnull final IVariableBuilder p_variablebuilder ) throws IOException
287
286
{
288
287
super ( IOUtils .toInputStream ( p_asl , "UTF-8" ), p_action , p_lambda , p_variablebuilder );
289
288
}
@@ -295,10 +294,9 @@ public CAgentGenerator( @Nonnull final String p_asl, @Nonnull final IActionGener
295
294
* @param p_action actions
296
295
* @param p_lambda lambdas
297
296
* @param p_variablebuilder variable builder
298
- * @throws Exception is thrown on any error
299
297
*/
300
298
public CAgentGenerator ( @ Nonnull final InputStream p_asl , @ Nonnull final IActionGenerator p_action ,
301
- @ Nonnull final ILambdaStreamingGenerator p_lambda , @ Nonnull final IVariableBuilder p_variablebuilder ) throws Exception
299
+ @ Nonnull final ILambdaStreamingGenerator p_lambda , @ Nonnull final IVariableBuilder p_variablebuilder )
302
300
{
303
301
super ( p_asl , p_action , p_lambda , p_variablebuilder );
304
302
}
@@ -309,10 +307,8 @@ public CAgentGenerator( @Nonnull final InputStream p_asl, @Nonnull final IAction
309
307
* @param p_asl asl code
310
308
* @param p_action actions
311
309
* @param p_lambda lambdas
312
- * @throws Exception is thrown on any error
313
310
*/
314
311
public CAgentGenerator ( @ Nonnull final InputStream p_asl , @ Nonnull final IActionGenerator p_action , @ Nonnull final ILambdaStreamingGenerator p_lambda )
315
- throws Exception
316
312
{
317
313
super ( p_asl , p_action , p_lambda );
318
314
}
0 commit comments