Skip to content
This repository has been archived by the owner on Aug 28, 2021. It is now read-only.

Commit

Permalink
added SpeckleException
Browse files Browse the repository at this point in the history
  • Loading branch information
teocomi committed Oct 22, 2019
1 parent 496cb1e commit 5046864
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions Data/SpeckleException.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SpeckleCore.Data
{
public class SpeckleException : Exception
{
public SpeckleException()
{
}

public SpeckleException(string message)
: base(message)
{
}

public SpeckleException(string message, Exception inner)
: base(message, inner)
{
}
}

public class RevitFamilyNotFoundException : SpeckleException
{
public RevitFamilyNotFoundException()
{
}

public RevitFamilyNotFoundException(string message)
: base(message)
{
}

public RevitFamilyNotFoundException(string message, Exception inner)
: base(message, inner)
{
}
}
}



0 comments on commit 5046864

Please sign in to comment.