Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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)
- {
- }
- }
- }
|