-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jira/iwf 273 Add/fix javadocs for exception thrown #265
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.iworkflow.core.exceptions; | ||
|
||
import io.iworkflow.core.ClientSideException; | ||
|
||
/** | ||
* A friendly named exception to indicate that the workflow does not exist | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @lwolczynski I want to remove the deprecated one becaue I believe no one is using it(should be the same for OSS users). For example, for signalWorkflow API, the exception is thrown because the workflow is not open, or not exists, so |
||
* It's subclass of {@link ClientSideException} with ErrorSubStatus.WORKFLOW_NOT_EXISTS_SUB_STATUS | ||
*/ | ||
public class WorkflowNotExistsException extends ClientSideException { | ||
public WorkflowNotExistsException( | ||
final ClientSideException exception) { | ||
super(exception); | ||
} | ||
} |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cc @lwolczynski This is a helper for using the requestId feature in AlreadyStartedOption, so that it can hide some details there (see an internal link in iwf-samples)