You've already forked CC-Framework.BriskGameServer
Add package sync workflow
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
public sealed class BriskAccountBannedException : BriskBlockingException
|
||||
{
|
||||
public BriskAccountBannedException(string message, int code = 0) : base(message, code)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0ed578795abc2cb4dac4996d0931c46f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,15 @@
|
||||
public class BriskApiException : BriskException
|
||||
{
|
||||
public BriskApiException(int httpStatus, int code, string serverMessage) : base(serverMessage)
|
||||
{
|
||||
HttpStatus = httpStatus;
|
||||
Code = code;
|
||||
ServerMessage = serverMessage;
|
||||
}
|
||||
|
||||
public int HttpStatus { get; }
|
||||
|
||||
public int Code { get; }
|
||||
|
||||
public string ServerMessage { get; }
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c6d29b76166b9b445b22fee43354d218
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,9 @@
|
||||
public sealed class BriskAuthExpiredException : BriskException
|
||||
{
|
||||
public BriskAuthExpiredException(string message, int code = 0) : base(message)
|
||||
{
|
||||
Code = code;
|
||||
}
|
||||
|
||||
public int Code { get; }
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8ca19ab0d42c3844d97cab1cbace1967
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,9 @@
|
||||
public class BriskBlockingException : BriskException
|
||||
{
|
||||
public BriskBlockingException(string message, int code = 0) : base(message)
|
||||
{
|
||||
Code = code;
|
||||
}
|
||||
|
||||
public int Code { get; }
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 093989dd2702e5245ab44cb552f6bf90
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,6 @@
|
||||
public sealed class BriskClientUpdateRequiredException : BriskBlockingException
|
||||
{
|
||||
public BriskClientUpdateRequiredException(string message, int code = 0) : base(message, code)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8c128ebe39b7b434aa8a0e492cb33b4a
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 65c4c8a851e4a9a4b90263e7f85f6766
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,9 @@
|
||||
public sealed class BriskHttpException : BriskException
|
||||
{
|
||||
public BriskHttpException(int httpStatus, string message) : base(message)
|
||||
{
|
||||
HttpStatus = httpStatus;
|
||||
}
|
||||
|
||||
public int HttpStatus { get; }
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 361ab9eadbcad1543b3e57787cf35150
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,6 @@
|
||||
public sealed class BriskMaintenanceException : BriskBlockingException
|
||||
{
|
||||
public BriskMaintenanceException(string message, int code = 0) : base(message, code)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0ee31a25f9bc0aa4c8d8d654e1d762e8
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
using System;
|
||||
|
||||
public sealed class BriskNetworkException : BriskException
|
||||
{
|
||||
public BriskNetworkException(string message, Exception innerException = null) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a68082e9ccba1be429989dd434acb915
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,6 @@
|
||||
public sealed class BriskNotInitializedException : BriskException
|
||||
{
|
||||
public BriskNotInitializedException() : base("Brisk has not been initialized. Call Brisk.InitializeAsync first.")
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 87a9ea9027d20d445bf41372cdb05015
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user