Class NoSuchConfigurationKeyException

  • All Implemented Interfaces:
    java.io.Serializable

    public class NoSuchConfigurationKeyException
    extends java.lang.Exception
    Exception thrown if a os specific configuration key could not be retrieved as no such property key exists.
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getPrefix()
      Accesses the prefix for which no os specific property keys could be found.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • NoSuchConfigurationKeyException

        public NoSuchConfigurationKeyException​(java.lang.String message,
                                               java.lang.String prefix,
                                               java.lang.Throwable cause)
        Parameters:
        message - fault description
        prefix - the offending property key prefix
        cause - a root cause
      • NoSuchConfigurationKeyException

        public NoSuchConfigurationKeyException​(java.lang.String message,
                                               java.lang.String prefix)
        Parameters:
        message - fault description
        prefix - the offending property key prefix
    • Method Detail

      • getPrefix

        public java.lang.String getPrefix()
        Accesses the prefix for which no os specific property keys could be found.
        Returns:
        the offending property key prefix.