Hi,
Anyone know what is going on here? This is in ValidateEpub.cpp:
Code:
try
{
throw(std::exception());
}
catch ( std::exception& exception )
{
results.push_back( Result( ERROR_EPUB_NOT_VALID_ZIP_ARCHIVE )
.SetCustomMessage( exception.what() ) );
return results;
}
If it's not implemented yet, perhaps that would be a better return/error message?