public JournalException(JournalErrorType type, string message, Exception innerException) : base(message, innerException) { Type = type; }
public JournalException(JournalErrorType type, string message) : this(type, message, null) { }