Skip to content

Commit e7c8aab

Browse files
Resolve missing XML comments
1 parent 48620f0 commit e7c8aab

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

src/FakeXrmEasy.Messages/Exceptions/NavigateToNextEntityOrganizationRequest/CurrentEntityNotFoundException.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,16 @@
22

33
namespace FakeXrmEasy.Messages.Exceptions.NavigateToNextEntityOrganizationRequest
44
{
5+
/// <summary>
6+
/// Exception raised when the entity record of the current stage associated to a given business process does not exist
7+
/// </summary>
58
public class CurrentEntityNotFoundException: Exception
69
{
10+
/// <summary>
11+
/// Default constructor
12+
/// </summary>
13+
/// <param name="logicalName"></param>
14+
/// <param name="id"></param>
715
public CurrentEntityNotFoundException(string logicalName, Guid id):
816
base($"There is no current entity record with logical name '{logicalName}' and Id '{id}'")
917
{

src/FakeXrmEasy.Messages/Exceptions/NavigateToNextEntityOrganizationRequest/NextEntityNotFoundException.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,16 @@
22

33
namespace FakeXrmEasy.Messages.Exceptions.NavigateToNextEntityOrganizationRequest
44
{
5+
/// <summary>
6+
/// Exception raised when the record of the the next stage in a given business process does not exist
7+
/// </summary>
58
public class NextEntityNotFoundException: Exception
69
{
10+
/// <summary>
11+
/// Default constructor
12+
/// </summary>
13+
/// <param name="logicalName"></param>
14+
/// <param name="id"></param>
715
public NextEntityNotFoundException(string logicalName, Guid id):
816
base($"There is no next entity record with logical name '{logicalName}' and Id '{id}'")
917
{

0 commit comments

Comments
 (0)