01 /**
02 *
03 * All content copyright (c) 2003-2008 Terracotta, Inc.,
04 * except as may otherwise be noted in a separate copyright notice.
05 * All rights reserved.
06 *
07 */
08 package demo.tasklist.service;
09
10 /**
11 * Description of the Class
12 *
13 *@author Terracotta, Inc.
14 */
15 public class ErrorKeeper {
16 private String errorMsg;
17
18 public ErrorKeeper(String error) {
19 errorMsg = error;
20 }
21
22 public String getErrorMsg() {
23 return errorMsg;
24 }
25
26 }
|