Package de.mnl.osgi.bnd.maven
Class MavenResourceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.mnl.osgi.bnd.maven.MavenResourceException
-
- All Implemented Interfaces:
Serializable
public class MavenResourceException extends Exception
Indicates a problem when lazily loading properties of aMavenResource
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MavenResourceException()
Instantiates a new maven resource exception.MavenResourceException(String message)
Instantiates a new maven resource exception.MavenResourceException(String message, Throwable cause)
Instantiates a new maven resource exception.MavenResourceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Instantiates a new maven resource exception.MavenResourceException(Throwable cause)
Instantiates a new maven resource exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MavenResourceException
public MavenResourceException()
Instantiates a new maven resource exception.
-
MavenResourceException
public MavenResourceException(String message)
Instantiates a new maven resource exception.- Parameters:
message
- the message
-
MavenResourceException
public MavenResourceException(Throwable cause)
Instantiates a new maven resource exception.- Parameters:
cause
- the cause
-
MavenResourceException
public MavenResourceException(String message, Throwable cause)
Instantiates a new maven resource exception.- Parameters:
message
- the messagecause
- the cause
-
MavenResourceException
public MavenResourceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Instantiates a new maven resource exception.- Parameters:
message
- the messagecause
- the causeenableSuppression
- the enable suppressionwritableStackTrace
- the writable stack trace
-
-