01: /* $Id: NoEditorException.java 652 2006-01-19 11:12:50Z hengels $ */
02: package org.conform.wings;
03:
04: import org.conform.PropertyMeta;
05:
06: public class NoEditorException extends RuntimeException {
07: private PropertyMeta field;
08:
09: public NoEditorException(PropertyMeta field) {
10: super (field.getName());
11: this .field = field;
12: }
13:
14: public NoEditorException(Throwable cause, PropertyMeta field) {
15: super (cause);
16: this .field = field;
17: }
18:
19: public PropertyMeta getField() {
20: return field;
21: }
22: }
|