01: /*
02: * Copyright (C) The MX4J Contributors.
03: * All rights reserved.
04: *
05: * This software is distributed under the terms of the MX4J License version 1.0.
06: * See the terms of the MX4J License in the documentation provided with this software.
07: */
08:
09: package javax.management;
10:
11: /**
12: * @version $Revision: 1.7 $
13: */
14: public class BadAttributeValueExpException extends Exception {
15: private static final long serialVersionUID = -3105272988410493376L;
16:
17: /**
18: * @serial The value of the MBean attribute
19: */
20: private final Object val;
21:
22: public BadAttributeValueExpException(Object value) {
23: super(String.valueOf(value));
24: this.val = value;
25: }
26: }
|