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