blob: faf0c59932cf0096a4785f652a0da3559a79a856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* TMembershipPasswordException 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: TMembershipPasswordException.php 1398 2006-09-08 19:31:03Z xue $
* @package System.Configuration.Provider
* @since 3.1
*/
Prado::using('System.Exceptions.TException');
class TMembershipPasswordException extends TException
{
}
?>
|