Skip to content

Commit 8fa2fec

Browse files
committed
Change CRLF to LF for issue 356.
1 parent ae57d5a commit 8fa2fec

1 file changed

Lines changed: 58 additions & 58 deletions

File tree

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,58 @@
1-
/**
2-
* OWASP Enterprise Security API (ESAPI)
3-
*
4-
* This file is part of the Open Web Application Security Project (OWASP)
5-
* Enterprise Security API (ESAPI) project. For details, please see
6-
* <a href="http://www.owasp.org/index.php/ESAPI">http://www.owasp.org/index.php/ESAPI</a>.
7-
*
8-
* Copyright (c) 2007 - The OWASP Foundation
9-
*
10-
* The ESAPI is published by OWASP under the BSD license. You should read and accept the
11-
* LICENSE before you use, modify, and/or redistribute this software.
12-
*
13-
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
14-
* @created 2007
15-
*/
16-
package org.owasp.esapi.errors;
17-
18-
/**
19-
* An AuthenticationException should be thrown when anything goes wrong during
20-
* login or logout. They are also appropriate for any problems related to
21-
* identity management.
22-
*
23-
* @author Jeff Williams (jeff.williams@aspectsecurity.com)
24-
*/
25-
public class AuthenticationLoginException extends AuthenticationException {
26-
27-
/** The Constant serialVersionUID. */
28-
private static final long serialVersionUID = 1L;
29-
30-
/**
31-
* Instantiates a new authentication exception.
32-
*/
33-
protected AuthenticationLoginException() {
34-
// hidden
35-
}
36-
37-
/**
38-
* Creates a new instance of EnterpriseSecurityException.
39-
*
40-
* @param userMessage the message displayed to the user
41-
* @param logMessage the message logged
42-
*/
43-
public AuthenticationLoginException(String userMessage, String logMessage) {
44-
super(userMessage, logMessage);
45-
}
46-
47-
/**
48-
* Instantiates a new authentication exception.
49-
*
50-
* @param userMessage the message displayed to the user
51-
* @param logMessage the message logged
52-
* @param cause the cause
53-
*/
54-
public AuthenticationLoginException(String userMessage, String logMessage, Throwable cause) {
55-
super(userMessage, logMessage, cause);
56-
}
57-
58-
}
1+
/**
2+
* OWASP Enterprise Security API (ESAPI)
3+
*
4+
* This file is part of the Open Web Application Security Project (OWASP)
5+
* Enterprise Security API (ESAPI) project. For details, please see
6+
* <a href="http://www.owasp.org/index.php/ESAPI">http://www.owasp.org/index.php/ESAPI</a>.
7+
*
8+
* Copyright (c) 2007 - The OWASP Foundation
9+
*
10+
* The ESAPI is published by OWASP under the BSD license. You should read and accept the
11+
* LICENSE before you use, modify, and/or redistribute this software.
12+
*
13+
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
14+
* @created 2007
15+
*/
16+
package org.owasp.esapi.errors;
17+
18+
/**
19+
* An AuthenticationException should be thrown when anything goes wrong during
20+
* login or logout. They are also appropriate for any problems related to
21+
* identity management.
22+
*
23+
* @author Jeff Williams (jeff.williams@aspectsecurity.com)
24+
*/
25+
public class AuthenticationLoginException extends AuthenticationException {
26+
27+
/** The Constant serialVersionUID. */
28+
private static final long serialVersionUID = 1L;
29+
30+
/**
31+
* Instantiates a new authentication exception.
32+
*/
33+
protected AuthenticationLoginException() {
34+
// hidden
35+
}
36+
37+
/**
38+
* Creates a new instance of EnterpriseSecurityException.
39+
*
40+
* @param userMessage the message displayed to the user
41+
* @param logMessage the message logged
42+
*/
43+
public AuthenticationLoginException(String userMessage, String logMessage) {
44+
super(userMessage, logMessage);
45+
}
46+
47+
/**
48+
* Instantiates a new authentication exception.
49+
*
50+
* @param userMessage the message displayed to the user
51+
* @param logMessage the message logged
52+
* @param cause the cause
53+
*/
54+
public AuthenticationLoginException(String userMessage, String logMessage, Throwable cause) {
55+
super(userMessage, logMessage, cause);
56+
}
57+
58+
}

0 commit comments

Comments
 (0)