refactoring
This commit is contained in:
parent
49826eae4a
commit
8e8f4d3896
367 changed files with 217 additions and 364 deletions
15
src/Yavsc.Server/Exceptions/InvalidActivityModelException.cs
Normal file
15
src/Yavsc.Server/Exceptions/InvalidActivityModelException.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
namespace Yavsc.Exceptions
|
||||
{
|
||||
public class InvalidWorkflowModelException : Exception
|
||||
{
|
||||
public InvalidWorkflowModelException(string descr) : base(descr)
|
||||
{
|
||||
|
||||
}
|
||||
public InvalidWorkflowModelException(string descr, Exception inner) : base(descr,inner)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
9
src/Yavsc.Server/Exceptions/InvalidPathException.cs
Normal file
9
src/Yavsc.Server/Exceptions/InvalidPathException.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
using System;
|
||||
|
||||
namespace Yavsc.Exceptions
|
||||
{
|
||||
public class InvalidPathException: Exception
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue