public static function customerNotLoggedIn(): self
{ return new self( Response::HTTP_FORBIDDEN,
self::ORDER_CUSTOMER_NOT_LOGGED_IN,
'Customer is not logged in.',
);
} public static function customerAuthThrottledException(int
$waitTime, ?\Throwable
$e = null
): ShopwareHttpException
{ return new CustomerAuthThrottledException( $waitTime,
$e );
}}