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