summaryrefslogtreecommitdiff
path: root/framework/Web/Security/TMembershipCreateUserException.php
blob: def74c8d9adf2b6c7bc85426e147701bfaa32e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
/**
 * TMembershipCreateUserException class.
 * The exception that is thrown when a user is not successfully created by a membership provider.
 *
 * @author Jason Ragsdale <jrags@jasrags.net>
 * @version $Id: TMembershipCreateUserException.php 1398 2006-09-08 19:31:03Z xue $
 * @package System.Configuration.Provider
 * @since 3.1
 */

Prado::using('System.Exceptions.TException');
class TMembershipCreateUserException extends TException 
{
	
}
?>