summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/UnsolvableConstraintsException.cs
blob: 40e37812515c1c7bb90123d035f2a649c63e6035 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Xamarin.Forms
{
	public class UnsolvableConstraintsException : Exception
	{
		public UnsolvableConstraintsException(string message) : base(message)
		{
		}
	}
}