Class UnknownResourceException

All Implemented Interfaces:
Serializable

public class UnknownResourceException extends ResourceException
Raised when resource was not found.
Author:
Stepan Roh, Polarion Software
See Also:
  • Constructor Details

    • UnknownResourceException

      public UnknownResourceException(ILocation resource)
      Exception without message and cause.
      Parameters:
      resource - resource location (should be absolute if possible)
    • UnknownResourceException

      public UnknownResourceException(ILocation resource, String message)
      Exception with message and without cause.
      Parameters:
      resource - resource location (should be absolute if possible)
      message - detail message
    • UnknownResourceException

      public UnknownResourceException(ILocation resource, Throwable cause)
      Exception without message and with cause.
      Parameters:
      resource - resource location (should be absolute if possible)
      cause - exception cause
    • UnknownResourceException

      public UnknownResourceException(ILocation resource, String message, Throwable cause)
      Exception with message and cause.
      Parameters:
      resource - resource location (should be absolute if possible)
      message - detail message
      cause - exception cause