This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
accm-website/includes/exceptions/UserExistsException.inc.php
2010-08-14 22:32:09 +02:00

12 lines
221 B
PHP

<?php
/**
* This Exception is thrown if, during creation of an user, the given username
* is already taken.
*
* @author Thomas Schwery <thomas.schwery@epfl.ch>
*/
class UserExistsException extends Exception {
}
?>