891a18819b
* react to renamespacing * merge dev * fmt * initialize things with typeloader * autocad initialization * add arcgis * add more projects to local * instrument rhino more * update nugets * fmt
15 lines
328 B
C#
15 lines
328 B
C#
using Speckle.Sdk;
|
|
|
|
namespace Speckle.Connectors.DUI.Utils;
|
|
|
|
public class ModelNotFoundException : SpeckleException
|
|
{
|
|
public ModelNotFoundException(string message)
|
|
: base(message) { }
|
|
|
|
public ModelNotFoundException(string message, Exception inner)
|
|
: base(message, inner) { }
|
|
|
|
public ModelNotFoundException() { }
|
|
}
|