| |||||||||||||||||
| Source File | Conditionals | Statements | Methods | TOTAL | |||||||||||||
| Config\ConfigurationException.cs | - | - | 100,0 % | 100,0 % |
|
||||||||||||
| 1 | using System; | |
| 2 | ||
| 3 | namespace ShowX.Config | |
| 4 | { | |
| 5 | /// <summary> | |
| 6 | /// ConfigurationException represent exceptions produced during configuation | |
| 7 | /// process. | |
| 8 | /// </summary> | |
| 9 | public class ConfigurationException : Exception | |
| 10 | { | |
| 11 | /// <summary> | |
| 12 | /// Constructor. Builds exception with an error message and an inner exception. | |
| 13 | /// </summary> | |
| 14 | /// <param name="msg">Exception message.</param> | |
| 15 | /// <param name="inner">Inner exception.</param> | |
| 16 | 6 | public ConfigurationException(string msg, Exception inner) |
| 17 | : base(msg,inner) {} | |
| 18 | ||
| 19 | /// <summary> | |
| 20 | /// Constructor. Builds exception with an error message. | |
| 21 | /// </summary> | |
| 22 | /// <param name="msg">Exception message.</param> | |
| 23 | 6 | public ConfigurationException(string msg) : base(msg) {} |
| 24 | } | |
| 25 | } | |
| 26 |
|
||||||||