using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace NonaBGS.Journal { public class JournalException : Exception { public JournalException(string message) : base(message) { } } }