Ryujinx-GtkSharp/gconf/GConf/NoSuchKeyException.cs
Gonzalo Paniagua Javier 011ad9f4bf 2003-02-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* gconf/GConf/Client.cs:
	* gconf/GConf/NoSuchKeyException.cs: added key string to the exception
	when Get does not find it.

svn path=/trunk/gtk-sharp/; revision=11544
2003-02-13 03:05:17 +00:00

19 lines
281 B
C#

namespace GConf
{
using System;
public class NoSuchKeyException : Exception
{
public NoSuchKeyException ()
: base ("The requested GConf key was not found")
{
}
public NoSuchKeyException (string key)
: base ("Key '" + key + "' not found in GConf")
{
}
}
}