eee422752c
* BFatalErrorException: Add commitTransactionResult property and respective constructor. In case committing the transaction failed, BPackageManager throws a BFatalErrorException with the result. * BFatalErrorException::UserInteractionHandler: Pass BCommitTransactionResult to ProgressTransactionCommitted().
85 lines
1.8 KiB
C++
85 lines
1.8 KiB
C++
/*
|
|
* Copyright 2013-2014, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Ingo Weinhold <ingo_weinhold@gmx.de>
|
|
*/
|
|
#ifndef _PACKAGE__MANAGER__PRIVATE__EXCEPTIONS_H_
|
|
#define _PACKAGE__MANAGER__PRIVATE__EXCEPTIONS_H_
|
|
|
|
|
|
#include <package/CommitTransactionResult.h>
|
|
#include <package/Context.h>
|
|
|
|
|
|
namespace BPackageKit {
|
|
|
|
namespace BManager {
|
|
|
|
namespace BPrivate {
|
|
|
|
|
|
class BException {
|
|
public:
|
|
BException();
|
|
BException(const BString& message);
|
|
|
|
const BString& Message() const
|
|
{ return fMessage; }
|
|
|
|
protected:
|
|
BString fMessage;
|
|
};
|
|
|
|
|
|
class BFatalErrorException : public BException {
|
|
public:
|
|
BFatalErrorException();
|
|
BFatalErrorException(const char* format, ...);
|
|
BFatalErrorException(status_t error,
|
|
const char* format, ...);
|
|
BFatalErrorException(
|
|
const BCommitTransactionResult& result);
|
|
|
|
const BString& Details() const
|
|
{ return fDetails; }
|
|
BFatalErrorException& SetDetails(const BString& details);
|
|
|
|
status_t Error() const
|
|
{ return fError; }
|
|
|
|
bool HasCommitTransactionFailed() const
|
|
{ return fCommitTransactionFailed; }
|
|
const BCommitTransactionResult& CommitTransactionResult() const
|
|
{ return fCommitTransactionResult; }
|
|
|
|
private:
|
|
BString fDetails;
|
|
status_t fError;
|
|
BCommitTransactionResult fCommitTransactionResult;
|
|
bool fCommitTransactionFailed;
|
|
};
|
|
|
|
|
|
class BAbortedByUserException : public BException {
|
|
public:
|
|
BAbortedByUserException();
|
|
};
|
|
|
|
|
|
class BNothingToDoException : public BException {
|
|
public:
|
|
BNothingToDoException();
|
|
};
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
} // namespace BManager
|
|
|
|
} // namespace BPackageKit
|
|
|
|
|
|
#endif // _PACKAGE__MANAGER__PRIVATE__EXCEPTIONS_H_
|