mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
33 lines
717 B
C#
33 lines
717 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MessageBoard.Exceptions
|
|
{
|
|
public class ThreadException : Exception
|
|
{
|
|
public ThreadException(string msg) : base(msg) { }
|
|
}
|
|
|
|
public class UserException : Exception
|
|
{
|
|
public UserException(string msg) : base(msg) { }
|
|
}
|
|
|
|
public class SessionException : Exception
|
|
{
|
|
public SessionException(string msg) : base(msg) { }
|
|
}
|
|
|
|
public class CategoryException : Exception
|
|
{
|
|
public CategoryException(string msg) : base(msg) { }
|
|
}
|
|
|
|
public class PermissionException: Exception
|
|
{
|
|
public PermissionException(string msg) : base(msg) { }
|
|
}
|
|
}
|
|
|