SenseNet.ContentRepository.Field.InvalidImportDataException C# (CSharp) Method

InvalidImportDataException() protected method

protected InvalidImportDataException ( string message ) : Exception
message string
return System.Exception
		protected Exception InvalidImportDataException(string message)
		{
			return new TransferException(true, message, this.Content.ContentHandler.Path, this.Content.ContentHandler.NodeType.Name, this.Name);
		}
		protected Exception InvalidImportDataException(string message, Exception innerException)

Same methods

Field::InvalidImportDataException ( string message, Exception innerException ) : Exception