summaryrefslogtreecommitdiff
path: root/src/main/java/io/devnulllabs/openjava/mop/CannotExecuteException.java
blob: 78105c061bb984b9d548095bd0b62c40fc798b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * CannotExecuteException.java
 *
 * @author   Michiaki Tatsubori
 * @version  %VERSION% %DATE%
 * @see      java.lang.Object
 *
 * COPYRIGHT 1999 by Michiaki Tatsubori, ALL RIGHTS RESERVED.
 */
package io.devnulllabs.openjava.mop;




/**
 * CannotExecuteException is thrown if the requested introspection
 * cannot be performed on the class object, the method object, or
 * the field object,  which needs a java's Class object not available.
 *
 * @author   Michiaki Tatsubori
 * @version  1.0
 * @since    $Id: CannotExecuteException.java,v 1.2 2003/02/19 02:55:01 tatsubori Exp $
 * @see java.lang.Object
 */
public class CannotExecuteException extends MOPException
{
    public CannotExecuteException() {
    super();
    }

    public CannotExecuteException( String access ) {
    super( access );
    }
}