/*********************************************************************************************************** * Name : BatchApexErrorEventLog * Purpose : Wrapper Class for BatchApexErrorEvent platform Event **********************************************************************************************************/ public class BatchApexErrorEventLog { public String stack { get; set; } public String exceptionType { get; set; } public String message { get; set; } public BatchApexErrorEventLog(String message, String exceptionType, String stack) { this.message = message; this.exceptionType = exceptionType; this.stack = stack; } }