package org.simantics.pythonlink; public class PythonException extends RuntimeException { private static final long serialVersionUID = 3015300166106850889L; public PythonException() { super(); } public PythonException(String message) { super(message); } public PythonException(String message, Throwable cause) { super(message, cause); } public PythonException(Throwable cause) { super(cause); } }