Package org.opennms.upgrade.api
Class OnmsUpgradeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opennms.upgrade.api.OnmsUpgradeException
-
- All Implemented Interfaces:
Serializable
public class OnmsUpgradeException extends Exception
The Class OnmsUpgradeException.- Author:
- Alejandro Galue
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OnmsUpgradeException()
Instantiates a new OpenNMS upgrade exception.OnmsUpgradeException(String msg)
Instantiates a new OpenNMS upgrade exception.OnmsUpgradeException(String msg, Throwable t)
Instantiates a new OpenNMS upgrade exception.OnmsUpgradeException(Throwable t)
Instantiates a new OpenNMS upgrade 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
-
OnmsUpgradeException
public OnmsUpgradeException()
Instantiates a new OpenNMS upgrade exception.
-
OnmsUpgradeException
public OnmsUpgradeException(String msg, Throwable t)
Instantiates a new OpenNMS upgrade exception.- Parameters:
msg
- the messaget
- the exception causing the problem.
-
OnmsUpgradeException
public OnmsUpgradeException(String msg)
Instantiates a new OpenNMS upgrade exception.- Parameters:
msg
- the message
-
OnmsUpgradeException
public OnmsUpgradeException(Throwable t)
Instantiates a new OpenNMS upgrade exception.- Parameters:
t
- the exception causing the problem.
-
-