|
- using System;
-
-
- namespace SIE.VSDK.Exceptions.Solution
- {
- public class NewSolutionIsNullException:Exception
- {
- public NewSolutionIsNullException(string message)
- : base(message)
- {
- }
-
- public NewSolutionIsNullException(string message, Exception inner)
- : base(message, inner)
- {
- }
- }
- }
|