mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-17 21:00:10 +10:00
Implement Qualcomm Sahara VIP and fix a few bugs
* Qualcomm Sahara VIP * Project Cleanup * Allow unlocking an already unlocked phone
This commit is contained in:
@@ -11,6 +11,14 @@ namespace SevenZip
|
||||
internal class DataErrorException : ApplicationException
|
||||
{
|
||||
public DataErrorException() : base("Data Error") { }
|
||||
|
||||
public DataErrorException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public DataErrorException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -19,6 +27,14 @@ namespace SevenZip
|
||||
internal class InvalidParamException : ApplicationException
|
||||
{
|
||||
public InvalidParamException() : base("Invalid Parameter") { }
|
||||
|
||||
public InvalidParamException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public InvalidParamException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public interface ICodeProgress
|
||||
|
||||
Reference in New Issue
Block a user