Skip to content

Commit

Permalink
Fix minor errors in javadoc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
sake committed Jun 24, 2015
1 parent 25d993a commit 75edfe2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class EAC1InputType {
* Creates a new EAC1InputType.
*
* @param baseType DIDAuthenticationDataType
* @throws Exception
* @throws Exception Thrown in cause the type iss errornous.
*/
public EAC1InputType(DIDAuthenticationDataType baseType) throws Exception {
parseCertificateDescriptionElement(baseType);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public final class EAC2InputType {
* Creates a new EAC2InputType.
*
* @param baseType DIDAuthenticationDataType
* @throws Exception
* @throws Exception Thrown in cause the type iss errornous.
*/
public EAC2InputType(DIDAuthenticationDataType baseType) throws Exception {
this.authMap = new AuthDataMap(baseType);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected EAC2OutputType(AuthDataMap authMap) {
/**
* Sets the challenge.
*
* @param challenge
* @param challenge Challenge value.
*/
public void setChallenge(byte[] challenge) {
this.challenge = challenge;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class EACAdditionalInputType {
* Creates a new EACAdditionalInputType.
*
* @param baseType DIDAuthenticationDataType
* @throws ParserConfigurationException
* @throws ParserConfigurationException Thrown in case the parser couldn't be loaded.
*/
public EACAdditionalInputType(DIDAuthenticationDataType baseType) throws ParserConfigurationException {
authMap = new AuthDataMap(baseType);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class PACEInputType {
* Creates a new PACEInputType.
*
* @param baseType DIDAuthenticationDataType
* @throws ParserConfigurationException
* @throws ParserConfigurationException Thrown in case the parser couldn't be loaded.
*/
public PACEInputType(DIDAuthenticationDataType baseType) throws ParserConfigurationException {
authMap = new AuthDataMap(baseType);
Expand Down

0 comments on commit 75edfe2

Please sign in to comment.