- Ability to throw “normal” .NET exceptions from X++. For example, I want to throw ArgumentNullException rather than just error(“Wrong parameters specified”).
- Ability to define and throw custom exceptions, specific to the business domain of D365FO.
- Ability to catch these custom exceptions in the usual way.
- Simple syntax for throwing these exceptions.
public class ExceptionHelper { public static void ThrowException(Exception ex) { throw ex; } }
ExceptionHelper::ThrowException(new ArgumentNullException("_name");
throw exception(new ArgumentNullException("_name"));
[ExtensionOf(classStr(Global))] final static class Global_ManagedExceptions_Extension { public static Exception exception(System.Exception _ex) { Goshoom.DynamicsAX.ExceptionHelper::ThrowException(_ex); // The return statement is never called because an exception is thrown above, // but it makes the method compatible with the throw statement. return Exception::Error; } }
SysUserInfo user = ... if (!user.Email) { throw exception(new FieldEmptyException(fieldStr(SysUserInfo, Email), user)); }

catch (fieldEmptyEx) { if (fieldEmptyEx.Record) { setPrefix("We can log all these details:"); info(strFmt("Exception type: %1", fieldEmptyEx.GetType().Name)); info(strFmt("Message: %1", fieldEmptyEx.Message)); info(strFmt("Table: %1", tableId2Name(fieldEmptyEx.Record.TableId))); info(strFmt("Field: %1", fieldEmptyEx.FieldName)); SysUserInfo user = fieldEmptyEx.Record as SysUserInfo; if (user) { info(strFmt("Data from the table: user ID %1, RecID %2", user.id, user.RecId)); } info(strFmt("Stack trace: %1", fieldEmptyEx.StackTrace)); } }