-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from koptan/issue-34-signature-proofoptions-no…
…t-included Feat: adding Proof Configuration to Signature
- Loading branch information
Showing
34 changed files
with
917 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-561 Bytes
src/main/java/org/eclipse/tractusx/ssi/lib/exception/SSIException.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-1.09 KB
...java/org/eclipse/tractusx/ssi/lib/exception/proof/UnsupportedSignatureTypeException.class
Binary file not shown.
70 changes: 70 additions & 0 deletions
70
src/main/java/org/eclipse/tractusx/ssi/lib/exception/resolver/DidWebException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* ****************************************************************************** | ||
* Copyright (c) 2021,2023 Contributors to the Eclipse Foundation | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0. | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* ******************************************************************************* | ||
*/ | ||
|
||
package org.eclipse.tractusx.ssi.lib.exception.resolver; | ||
|
||
import org.eclipse.tractusx.ssi.lib.exception.SSIException; | ||
|
||
public class DidWebException extends SSIException { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
/** | ||
* Instantiates a new Did web exception. | ||
* | ||
* @param message the message | ||
*/ | ||
public DidWebException(String message) { | ||
super(message); | ||
} | ||
|
||
/** | ||
* Instantiates a new Did web exception. | ||
* | ||
* @param message the message | ||
* @param cause the cause | ||
*/ | ||
public DidWebException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
/** | ||
* Instantiates a new Did web exception. | ||
* | ||
* @param cause the cause | ||
*/ | ||
public DidWebException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
/** | ||
* Instantiates a new Did web exception. | ||
* | ||
* @param message the message | ||
* @param cause the cause | ||
* @param enableSuppression the enable suppression | ||
* @param writableStackTrace the writable stack trace | ||
*/ | ||
public DidWebException( | ||
String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { | ||
super(message, cause, enableSuppression, writableStackTrace); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.