/// <summary>
 /// Parameterized constructor
 /// </summary>
 /// <param name="message"></param>
 /// <param name="exception"></param>
 public CensusAnalyserException(string message, Exception_type exception) : this(message)
 {
     this.exception = exception;
 }
 /// <summary>
 /// Parameterized constructor
 /// </summary>
 /// <param name="message"></param>
 /// <param name="exception"></param>
 public CSVException(string message, Exception_type exception) : this(message)
 {
 }