// Copyright (c) 2012-2020 Wojciech Figat. All rights reserved.
#pragma once
#include "Engine/Debug/Exception.h"
namespace Log
{
///
/// The exception that is thrown when a file does not exist.
///
class FileNotFoundException : public Exception
{
public:
///
/// Init
///
FileNotFoundException()
: FileNotFoundException(String::Empty)
{
}
///
/// Creates default exception with additional data
///
/// Additional information that help describe error
FileNotFoundException(const String& additionalInfo)
: Exception(TEXT("File not found"), additionalInfo)
{
}
};
}