1 15 package org.apache.tapestry.util.exception; 16 17 import java.io.Serializable ; 18 19 24 25 public class ExceptionProperty implements Serializable  26 { 27 private static final long serialVersionUID = 5260773289683550374L; 28 29 32 33 private String name; 34 35 private Object value; 36 37 public ExceptionProperty(String name, Object value) 38 { 39 this.name = name; 40 this.value = value; 41 } 42 43 public String getName() 44 { 45 return name; 46 } 47 48 public Object getValue() 49 { 50 return value; 51 } 52 } | Popular Tags |