SPRINT-15: refactor of api actions, moving logics into utils class, unified all calls to apis, clean ups, etc.

This commit is contained in:
Tim Chamberlain
2022-11-11 21:39:05 -06:00
parent a2da8c4127
commit 11aa55cf40
8 changed files with 725 additions and 620 deletions

View File

@ -29,6 +29,17 @@ package com.kingsrook.qqq.backend.core.exceptions;
public class QException extends Exception
{
/*******************************************************************************
** Constructor of message
**
*******************************************************************************/
public QException(Throwable t)
{
super(t.getMessage(), t);
}
/*******************************************************************************
** Constructor of message
**