-
Notifications
You must be signed in to change notification settings - Fork 51
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
Library upgrade to version V2.10.1 #177
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,6 +78,11 @@ private void ShouldThrowFormServiceExceptionIfExceptionOccurs() | |
message: "Failed Form Service Exception occurred, please contact support for assistance.", | ||
innerException: someException); | ||
|
||
|
||
// Type exception: FormServiceException | ||
// INNER Exception: FailedFormServiceException | ||
|
||
// Current Inner Exception: SYSTEM.EXCEPTION | ||
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. No comments except for |
||
var expectedFormServiceException = | ||
new FormServiceException( | ||
message: "Form service error occurred, contact support.", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,7 +114,7 @@ private void ShouldThrowDependencyExceptionOnBuildIfDependencyErrorOccurs( | |
|
||
var expectedFormOrchestrationDependencyException = | ||
new FormOrchestrationDependencyException( | ||
message: "Form orchestration dependency error occurred, fix errors and try again.", | ||
message: "Form orchestration dependency validation error occurred, fix the errors and try again.", | ||
innerException: dependancyException); | ||
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. parameters stay at the same level of indentation |
||
|
||
this.attributeServiceMock.Setup(service => | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,7 @@ namespace RESTFulSense.Models.Coordinations.Forms.Exceptions | |
{ | ||
public class FormCoordinationDependencyException : Xeption | ||
{ | ||
public FormCoordinationDependencyException(Xeption innerException) | ||
: base( | ||
message: "Form coordination dependency error occurred, fix the errors and try again.", | ||
innerException: innerException) | ||
{ } | ||
|
||
|
||
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. Remove extra empty line |
||
public FormCoordinationDependencyException(string message, Xeption innerException) | ||
: base(message, innerException) | ||
{ } | ||
|
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.
Why is this 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.
Maybe got deleted by mistake. I've updated again. Will be see in the next revision once I push.