Home | History | Annotate | Download | only in jsse

Lines Matching defs:reason

30     private final SSLException reason;
38 * @param reason The SSLException to be thrown to application side after alert processing
42 protected AlertException(byte description, SSLException reason) {
43 super(reason);
44 this.reason = reason;
49 * Returns the reason of alert. This reason should be rethrown after alert processing.
51 * @return the reason of alert.
54 return reason;
61 * @see AlertProtocol for more information about possible reason codes.