01 /*
02 *
03 * All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
04 *
05 */
06 package demo.tasklist.service;
07
08 public class ErrorKeeper implements java.io.Serializable {
09 private String errorMsg;
10
11 public ErrorKeeper(String error) {
12 errorMsg = error;
13 }
14
15 public String getErrorMsg() {
16 return errorMsg;
17 }
18
19 }
|