Last active
August 29, 2015 14:16
-
-
Save HowardvanRooijen/25293249379fe6a1f9b0 to your computer and use it in GitHub Desktop.
LicensedCoresExceededException
This file contains hidden or 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
public class LicensedCoresExceededException : LicenseViolationException | |
{ | |
public LicensedCoresExceededException(int actualCoreCount) | |
{ | |
this.ActualCoreCount = actualCoreCount; | |
} | |
public LicensedCoresExceededException(string message, int actualCoreCount) : base(message) | |
{ | |
this.ActualCoreCount = actualCoreCount; | |
} | |
public int ActualCoreCount { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment