12 lines
220 B
C#
12 lines
220 B
C#
using System;
|
|
|
|
namespace Wino.Domain.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Thrown when composer cant find the mime to load.
|
|
/// </summary>
|
|
public class ComposerMimeNotFoundException : Exception
|
|
{
|
|
}
|
|
}
|