aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/actions/errorActions.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/framework/src/actions/errorActions.ts')
-rw-r--r--sdnr/wt/odlux/framework/src/actions/errorActions.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/framework/src/actions/errorActions.ts b/sdnr/wt/odlux/framework/src/actions/errorActions.ts
new file mode 100644
index 000000000..05d1868b1
--- /dev/null
+++ b/sdnr/wt/odlux/framework/src/actions/errorActions.ts
@@ -0,0 +1,25 @@
+import { Action } from '../flux/action';
+
+import { ErrorInfo } from '../models/errorInfo';
+export { ErrorInfo } from '../models/errorInfo';
+
+export class AddErrorInfoAction extends Action {
+
+ constructor(public errorInfo: ErrorInfo) {
+ super();
+ }
+}
+
+export class RemoveErrorInfoAction extends Action {
+
+ constructor(public errorInfo: ErrorInfo) {
+ super();
+ }
+}
+
+export class ClearErrorInfoAction extends Action {
+
+ constructor() {
+ super();
+ }
+} \ No newline at end of file