Smartswitch
BatchError.ice
Go to the documentation of this file.
1 #pragma once
2 
3 [["python:pkgdir:Smartswitch"]]
4 
5 #include <Config.ice>
6 
7 module Smartswitch
8 {
17  struct BatchError
18  {
19  string description;
20  string solution;
21  };
22  sequence<BatchError> BatchErrorOpt;
23 };
string solution
The possible way of working around the exception.
Definition: BatchError.ice:20
Definition: AccessException.ice:7
The struct contains the description of an error and a solution to work it around.
Definition: BatchError.ice:17
sequence< BatchError > BatchErrorOpt
Definition: BatchError.ice:22
string description
The error message which could be displayed to a user.
Definition: BatchError.ice:19