using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SIE.VSDK.Exceptions.Solution { public class NewSolutionIsEmptyException: Exception { public NewSolutionIsEmptyException(string message) : base(message) { } public NewSolutionIsEmptyException(string message, Exception inner) : base(message, inner) { } } }