Package com._1c.g5.v8.dt.bm.index.emf
Class EmfIndexAvailabilityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com._1c.g5.v8.dt.bm.index.emf.EmfIndexAvailabilityException
-
- All Implemented Interfaces:
Serializable
public class EmfIndexAvailabilityException extends RuntimeException
Exception that being thrown in case if EMF index is unavailable during calls.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EmfIndexAvailabilityException(org.eclipse.core.resources.IProject project, String message)
Creates a new instance of the exception.EmfIndexAvailabilityException(org.eclipse.core.resources.IProject project, String message, Throwable cause)
Creates a new instance of the exception.EmfIndexAvailabilityException(org.eclipse.core.resources.IProject project, Throwable cause)
Creates a new instance of the exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.eclipse.core.resources.IProject
getProject()
Gets the target project for the exception/-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
EmfIndexAvailabilityException
public EmfIndexAvailabilityException(org.eclipse.core.resources.IProject project, String message)
Creates a new instance of the exception.- Parameters:
project
- target project for the index, can't benull
message
- the detail message, can benull
.
-
EmfIndexAvailabilityException
public EmfIndexAvailabilityException(org.eclipse.core.resources.IProject project, String message, Throwable cause)
Creates a new instance of the exception.- Parameters:
project
- target project for the index, can't benull
message
- the detail message, can benull
.cause
- the cause, can benull
.
-
EmfIndexAvailabilityException
public EmfIndexAvailabilityException(org.eclipse.core.resources.IProject project, Throwable cause)
Creates a new instance of the exception.- Parameters:
project
- target project for the index, can't benull
cause
- the cause, can benull
.
-
-