All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.org.python.expose.generate.InvalidExposingException Maven / Gradle / Ivy

Go to download

Jython is an implementation of the high-level, dynamic, object-oriented language Python written in 100% Pure Java, and seamlessly integrated with the Java platform. It thus allows you to run Python on any Java platform.

There is a newer version: 2.7.4
Show newest version
package org.python.expose.generate;

/**
 * Indicates that something is invalid in an exposed type be it a conflict of names, a missing
 * annotation or some other such problem. The message on this exception should be sufficient for an
 * end user to track down where the problem is occuring and fix it.
 */
public class InvalidExposingException extends RuntimeException {

    public InvalidExposingException(String msg) {
        super(msg);
    }

    public InvalidExposingException(String message, String method) {
        this(message + "[method=" + method + "]");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy