You've already forked CC-Framework.BriskGameServer
Initial Brisk Unity SDK project
This commit is contained in:
16
Assets/BriskSdk/Runtime/Exceptions/BriskException.cs
Normal file
16
Assets/BriskSdk/Runtime/Exceptions/BriskException.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
public class BriskException : Exception
|
||||
{
|
||||
public BriskException()
|
||||
{
|
||||
}
|
||||
|
||||
public BriskException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public BriskException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user