Split out the Flashii interaction code into a separate library.
This commit is contained in:
parent
51f5c4c948
commit
2eba089a21
55 changed files with 769 additions and 552 deletions
SharpChatCommon/Configuration
9
SharpChatCommon/Configuration/ConfigExceptions.cs
Normal file
9
SharpChatCommon/Configuration/ConfigExceptions.cs
Normal file
|
@ -0,0 +1,9 @@
|
|||
namespace SharpChat.Configuration {
|
||||
public abstract class ConfigException : Exception {
|
||||
public ConfigException(string message) : base(message) { }
|
||||
public ConfigException(string message, Exception ex) : base(message, ex) { }
|
||||
}
|
||||
|
||||
public class ConfigLockException() : ConfigException("Unable to acquire lock for reading configuration.") {}
|
||||
public class ConfigTypeException(Exception ex) : ConfigException("Given type does not match the value in the configuration.", ex) {}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue