Update of /cvsroot/pgsqlclient/pgsqlclient/PostgreSql.Data.PGSqlClient/source
In directory sc8-pr-cvs1:/tmp/cvs-serv13630
Modified Files:
PGCommand.cs
Log Message:
Fixed exception throw.
Index: PGCommand.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient/PostgreSql.Data.PGSqlClient/source/PGCommand.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** PGCommand.cs 13 Jul 2003 13:39:00 -0000 1.2
--- PGCommand.cs 14 Jul 2003 11:59:06 -0000 1.3
***************
*** 500,504 ****
catch (PGClientException ex)
{
! throw ex;
}
}
--- 500,504 ----
catch (PGClientException ex)
{
! throw new PGException(ex.Message, ex);
}
}
|