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.8 $
13: */
14: public class BadBinaryOpValueExpException extends Exception {
15: private static final long serialVersionUID = 5068475589449021227L;
16:
17: /**
18: * @serial The irregular expression
19: */
20: private final ValueExp exp;
21:
22: public BadBinaryOpValueExpException(ValueExp exp) {
23: this .exp = exp;
24: }
25:
26: public ValueExp getExp() {
27: return exp;
28: }
29: }
|