class DatabaseException : System.Exception
{
public DatabaseException(System.Data.SqlClient.SqlException exception)
{
InnerException = exception;
}
public DatabaseException()
{ }
public DatabaseException(string message)
{ }
public DatabaseException(string message, Exception innerException)
{
InnerException = innerException;
}
}
这是我自定义的自定义异常,我是根据书上来做的。但VS2010去提示我,InnerException这个属性是只读的,无法给它赋值,请问哪位高手一下,这是什么原因!!!谢谢! |
|