C# Class GitSharp.Core.Exceptions.InvalidObjectIdException

Inheritance: System.ArgumentException
Show file Open project: stschake/GitSharp

Public Methods

Method Description
InvalidObjectIdException ( byte bytes, int offset, int length ) : System

Create exception with bytes of the invalid object id.

InvalidObjectIdException ( byte bytes, int offset, int length, Exception inner ) : System

Create exception with bytes of the invalid object id.

Protected Methods

Method Description
InvalidObjectIdException ( SerializationInfo info, StreamingContext context ) : System

Private Methods

Method Description
AsAscii ( byte bytes, int offset, int length ) : string

Method Details

InvalidObjectIdException() protected method

protected InvalidObjectIdException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System

InvalidObjectIdException() public method

Create exception with bytes of the invalid object id.
public InvalidObjectIdException ( byte bytes, int offset, int length ) : System
bytes byte containing the invalid id.
offset int offset in the byte array where the error occurred.
length int length of the sequence of invalid bytes.
return System

InvalidObjectIdException() public method

Create exception with bytes of the invalid object id.
public InvalidObjectIdException ( byte bytes, int offset, int length, Exception inner ) : System
bytes byte containing the invalid id.
offset int offset in the byte array where the error occurred.
length int length of the sequence of invalid bytes.
inner System.Exception Inner Exception.
return System