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