mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Creation of OpenFOAM-dev repository 15/04/2008
This commit is contained in:
@ -0,0 +1,51 @@
|
||||
package FoamXServer;
|
||||
|
||||
|
||||
/**
|
||||
* FoamXServer/FoamXIOError.java .
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.1"
|
||||
* from FoamX.idl
|
||||
* 02 April 2007 09:53:40 o'clock BST
|
||||
*/
|
||||
|
||||
public final class FoamXIOError extends org.omg.CORBA.UserException
|
||||
{
|
||||
public String errorMessage = null;
|
||||
public String ioFileName = null;
|
||||
public int ioStartLineNo = (int)0;
|
||||
public int ioEndLineNo = (int)0;
|
||||
public String methodName = null;
|
||||
public String fileName = null;
|
||||
public int lineNo = (int)0;
|
||||
|
||||
public FoamXIOError ()
|
||||
{
|
||||
super(FoamXIOErrorHelper.id());
|
||||
} // ctor
|
||||
|
||||
public FoamXIOError (String _errorMessage, String _ioFileName, int _ioStartLineNo, int _ioEndLineNo, String _methodName, String _fileName, int _lineNo)
|
||||
{
|
||||
super(FoamXIOErrorHelper.id());
|
||||
errorMessage = _errorMessage;
|
||||
ioFileName = _ioFileName;
|
||||
ioStartLineNo = _ioStartLineNo;
|
||||
ioEndLineNo = _ioEndLineNo;
|
||||
methodName = _methodName;
|
||||
fileName = _fileName;
|
||||
lineNo = _lineNo;
|
||||
} // ctor
|
||||
|
||||
|
||||
public FoamXIOError (String $reason, String _errorMessage, String _ioFileName, int _ioStartLineNo, int _ioEndLineNo, String _methodName, String _fileName, int _lineNo)
|
||||
{
|
||||
super(FoamXIOErrorHelper.id() + " " + $reason);
|
||||
errorMessage = _errorMessage;
|
||||
ioFileName = _ioFileName;
|
||||
ioStartLineNo = _ioStartLineNo;
|
||||
ioEndLineNo = _ioEndLineNo;
|
||||
methodName = _methodName;
|
||||
fileName = _fileName;
|
||||
lineNo = _lineNo;
|
||||
} // ctor
|
||||
|
||||
} // class FoamXIOError
|
||||
Reference in New Issue
Block a user