Skip to content

Commit

Permalink
Missiing constructors.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Aug 8, 2023
1 parent cacb18e commit 3024f42
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/IKVM.MSBuild.Tasks/IkvmTaskException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,18 @@ public IkvmTaskException(string message, Exception innerException) :

}

/// <summary>
/// Initializes a new instance.
/// </summary>
/// <param name="info"></param>
/// <param name="context"></param>
public IkvmTaskException(SerializationInfo info, StreamingContext context) :
base(info, context)
{

}


}

}
11 changes: 11 additions & 0 deletions src/IKVM.MSBuild.Tasks/IkvmTaskMessageException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,17 @@ public IkvmTaskMessageException(Exception innerException, string messageResource
this.messageArgs = messageArgs ?? throw new ArgumentNullException(nameof(messageArgs));
}

/// <summary>
/// Initializes a new instance.
/// </summary>
/// <param name="info"></param>
/// <param name="context"></param>
public IkvmTaskMessageException(SerializationInfo info, StreamingContext context) :
base(info, context)
{

}

/// <summary>
/// Gets the resource name of the message.
/// </summary>
Expand Down

0 comments on commit 3024f42

Please sign in to comment.