OracleConnectionException constructor

OracleConnectionException(
  1. String message, {
  2. int? errorCode,
  3. String? errorMessage,
  4. String? connectionString,
  5. String? username,
  6. StackTrace? stackTrace,
})

Implementation

OracleConnectionException(
  super.message, {
  super.errorCode,
  super.errorMessage,
  this.connectionString,
  this.username,
  super.stackTrace,
});