// Copyright (c) Wojciech Figat. All rights reserved. #pragma once #include "Engine/Debug/Exception.h" #include "Engine/Scripting/Types.h" namespace Log { /// /// The exception that is thrown when a method call is invalid in an object's current state. /// class CLRInnerException : public Exception { public: /// /// Init /// CLRInnerException() : CLRInnerException(String::Empty) { } /// /// Creates default exception with additional data /// /// Additional information that help describe error CLRInnerException(const String& additionalInfo) : Exception(TEXT("Current .NET method has thrown an inner exception"), additionalInfo) { } }; }