Skip to content

Instantly share code, notes, and snippets.

@ismkdc
Created April 12, 2023 16:02
Show Gist options
  • Save ismkdc/4b74b6a64577543317eb5ad074632b08 to your computer and use it in GitHub Desktop.
Save ismkdc/4b74b6a64577543317eb5ad074632b08 to your computer and use it in GitHub Desktop.
public class CustomException : Exception
{
public CustomException(CustomError customError)
{
CustomError = customError;
}
public CustomError CustomError { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment