1<?php 2 3/** 4 * The user aborted the authentication workflow, by clicking "Cancel" or "Deny" 5 * or taking some similar action. 6 * 7 * For example, in OAuth/OAuth2 workflows, the authentication provider 8 * generally presents the user with a confirmation dialog with two options, 9 * "Approve" and "Deny". 10 * 11 * If an adapter detects that the user has explicitly bailed out of the 12 * workflow, it should throw this exception. 13 */ 14final class PhutilAuthUserAbortedException extends PhutilAuthException {} 15 16