/**
* @test java.sql.SQLTransientException(Throwable)
*/
public void test_Constructor_LThrowable_1() {
SQLTransientException sQLTransientException = new SQLTransientException(
(Throwable) null);
assertNotNull(sQLTransientException);
assertNull("The SQLState of SQLTransientException should be null",
sQLTransientException.getSQLState());
assertNull("The reason of SQLTransientException should be null",
sQLTransientException.getMessage());
assertEquals("The error code of SQLTransientException should be 0",
sQLTransientException.getErrorCode(), 0);
assertNull("The cause of SQLTransientException should be null",
sQLTransientException.getCause());
}