module DMAO module JWT module API module Errors class InvalidJWTIssuer < StandardError def initialize(msg="JWT Issuer not found at JWT Service") super(msg) end end end end end end