SqlException.renew constructor
SqlException.renew(
- SqlException sqlException, {
- String? cause,
Implementation
SqlException.renew(SqlException sqlException, {this.cause}) {
if(cause==null) cause=sqlException.cause;
sql=sqlException.sql;
json=sqlException.json;
sqlExceptionEnum=sqlException.sqlExceptionEnum;
}