Switched to file namespace declarations.
This commit is contained in:
parent
6593929827
commit
34e4e9b1a9
93 changed files with 3470 additions and 3471 deletions
SharpChatCommon/Configuration
|
@ -1,9 +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) { }
|
||||
}
|
||||
namespace SharpChat.Configuration;
|
||||
|
||||
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) {}
|
||||
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