blob: abec0c7e1ba1252a50ad5dcd88194963064af076 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "UserFunctionExecutionException.hpp"
#include "CacheableString.hpp"
using namespace System;
namespace Apache
{
namespace Geode
{
namespace Client
{
System::UInt64 UserFunctionExecutionException::ObjectSize::get()
{
throw gcnew IllegalStateException("UserFunctionExecutionException::ObjectSize is not intended for use.");
}
String^ UserFunctionExecutionException::Message::get()
{
_GF_MG_EXCEPTION_TRY2
try
{
auto value = m_nativeptr->get()->getMessage();
return marshal_as<String^>(value);
}
finally
{
GC::KeepAlive(m_nativeptr);
}
_GF_MG_EXCEPTION_CATCH_ALL2
}
String^ UserFunctionExecutionException::Name::get()
{
_GF_MG_EXCEPTION_TRY2
try
{
auto value = m_nativeptr->get()->getName();
return marshal_as<String^>(value);
}
finally
{
GC::KeepAlive(m_nativeptr);
}
_GF_MG_EXCEPTION_CATCH_ALL2
}
} // namespace Client
} // namespace Geode
} // namespace Apache