FileDocCategorySizeDatePackage
MsqlException.javaAPI DocExample807Tue Jan 01 00:00:00 GMT 1980COM.imaginary.sql.msql

MsqlException

public class MsqlException extends SQLException
This class is an SQLException that has special constructors for messages directly from mSQL.
Last modified 97/04/07
version
@(#) MsqlException.java 1.2@(#)
author
George Reese (borg@imaginary.com)

Fields Summary
Constructors Summary
public MsqlException(String data)
Constructs an MsqlException based on an error message from mSQL.

param
data an error message starting with -1:

	super(data.substring(3));
    
public MsqlException(Exception e)
Constructs an MsqlException based on some odd exception.

param
e the exception that caused this to be thrown.

	super(e.getMessage());
    
Methods Summary