CaffGeek/MBACNationals

View on GitHub
Commands/Tournament/TournamentAlreadyExists.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;
using System.Runtime.Serialization;

namespace MBACNationals.Tournament
{
    public class TournamentAlreadyExists : Exception, ISerializable
    {
        public TournamentAlreadyExists()
        {
            // Add implementation.
        }
        public TournamentAlreadyExists(string message)
        {
            // Add implementation.
        }
        public TournamentAlreadyExists(string message, Exception inner)
        {
            // Add implementation.
        }

        // This constructor is needed for serialization.
        protected TournamentAlreadyExists(SerializationInfo info, StreamingContext context)
        {
            // Add implementation.
        }
    }
}