SecurityException constructor

SecurityException(
  1. SecurityAlert reason,
  2. String message
)

Creates a new SecurityException with the given reason and message.

Implementation

SecurityException(this.reason, String message) : super(message);