2002-10-19 09:31:20 +00:00
|
|
|
namespace GConf
|
|
|
|
{
|
|
|
|
using System;
|
|
|
|
|
|
|
|
public class NoSuchKeyException : Exception
|
|
|
|
{
|
2003-02-13 03:05:17 +00:00
|
|
|
public NoSuchKeyException ()
|
|
|
|
: base ("The requested GConf key was not found")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public NoSuchKeyException (string key)
|
|
|
|
: base ("Key '" + key + "' not found in GConf")
|
|
|
|
{
|
|
|
|
}
|
2002-10-19 09:31:20 +00:00
|
|
|
}
|
|
|
|
}
|
2003-02-13 03:05:17 +00:00
|
|
|
|