1   package com.atlassian.security.auth.trustedapps;
2   
3   
4   /**
5    * Used when something serious is wrong. Should only occur if 
6    */
7   public class SystemException extends InvalidCertificateException
8   {
9       public SystemException(String appId, Exception cause)
10      {
11          super(new TransportErrorMessage.System(cause, appId), cause);
12      }
13  }