1 /*******************************************************************************
2 * Copyright (c) 2009 Ordina and committers to Mod4j
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Ordina - initial implementation
10 *******************************************************************************/
11 package org.mod4j.dslcommon.openarchitectureware;
12
13 public class Mod4jWorkflowException extends Exception {
14
15 /**
16 * Serializable need
17 */
18 private static final long serialVersionUID = 1286074961964414319L;
19
20 private String message;
21
22 public Mod4jWorkflowException(String string) {
23 setMessage(string);
24 }
25
26 public String getMessage() {
27 return message;
28 }
29
30 public void setMessage(String message) {
31 this.message = message;
32 }
33
34 }