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 BadStringOperationException extends Exception {
15: private static final long serialVersionUID = 7802201238441662100L;
16:
17: /**
18: * @serial The illegal operation
19: */
20: private final String op;
21:
22: public BadStringOperationException(String operation) {
23: super(operation);
24: this.op = operation;
25: }
26: }
|