Constructors Summary |
---|
public SQLWarning()Creates an {@code SQLWarning} object. The reason string is set to {@code
null}, the {@code SQLState} string is set to {@code null} and the error
code is set to 0.
super();
|
public SQLWarning(String theReason)Creates an {@code SQLWarning} object. The reason string is set to the
given reason string, the {@code SQLState} string is set to {@code null}
and the error code is set to 0.
super(theReason);
|
public SQLWarning(String theReason, String theSQLState)Creates an {@code SQLWarning} object. The reason string is set to the
given reason string, the {@code SQLState} string is set to the given
{@code SQLState} string and the error code is set to 0.
super(theReason, theSQLState);
|
public SQLWarning(String theReason, String theSQLState, int theErrorCode)Creates an {@code SQLWarning} object. The reason string is set to the
given reason string, the {@code SQLState} string is set to the given
{@code SQLState} string and the error code is set to the given error code
value.
super(theReason, theSQLState, theErrorCode);
|