Skip to content

Commit 35c7468

Browse files
author
sgonzalezMSFT
committed
Add comments to MsalInteractionRequiredException
1 parent 40508fd commit 35c7468

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main/java/com/microsoft/aad/msal4j/MsalInteractionRequiredException.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,19 @@
1515
*/
1616
public class MsalInteractionRequiredException extends MsalServiceException{
1717

18+
/**
19+
* Classification of the conditional access error, enabling you to do more actions or inform the
20+
* user depending on your scenario.
21+
*/
1822
@Accessors(fluent = true)
1923
@Getter
2024
private ServiceExceptionClassification classification;
2125

26+
/**
27+
* Initializes a new instance of the exception class
28+
* @param errorResponse response object contain information about error returned by server
29+
* @param headerMap http headers from the server response
30+
*/
2231
public MsalInteractionRequiredException(
2332
ErrorResponse errorResponse,
2433
Map<String,List<String>> headerMap) {

0 commit comments

Comments
 (0)