SqlException.renew constructor

SqlException.renew(
  1. SqlException sqlException, {
  2. String? cause,
})

Implementation

SqlException.renew(SqlException sqlException, {this.cause}) {
  if(cause==null) cause=sqlException.cause;
  sql=sqlException.sql;
  json=sqlException.json;
  sqlExceptionEnum=sqlException.sqlExceptionEnum;
}