12 lines
261 B
C#
12 lines
261 B
C#
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) {
|
|
}
|
|
}
|
|
}
|