Class Graph.Exceptions
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.structure.Graph.Exceptions
-
-
Constructor Summary
Constructors Constructor Description Exceptions()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IllegalArgumentException
argumentCanNotBeNull(String argument)
static IllegalArgumentException
edgeWithIdAlreadyExists(Object id)
static UnsupportedOperationException
graphComputerNotSupported()
static IllegalArgumentException
graphDoesNotSupportProvidedGraphComputer(Class graphComputerClass)
static UnsupportedOperationException
transactionsNotSupported()
static UnsupportedOperationException
variablesNotSupported()
static UnsupportedOperationException
vertexAdditionsNotSupported()
static IllegalArgumentException
vertexWithIdAlreadyExists(Object id)
-
-
-
Method Detail
-
variablesNotSupported
public static UnsupportedOperationException variablesNotSupported()
-
transactionsNotSupported
public static UnsupportedOperationException transactionsNotSupported()
-
graphComputerNotSupported
public static UnsupportedOperationException graphComputerNotSupported()
-
graphDoesNotSupportProvidedGraphComputer
public static IllegalArgumentException graphDoesNotSupportProvidedGraphComputer(Class graphComputerClass)
-
vertexAdditionsNotSupported
public static UnsupportedOperationException vertexAdditionsNotSupported()
-
vertexWithIdAlreadyExists
public static IllegalArgumentException vertexWithIdAlreadyExists(Object id)
-
edgeWithIdAlreadyExists
public static IllegalArgumentException edgeWithIdAlreadyExists(Object id)
-
argumentCanNotBeNull
public static IllegalArgumentException argumentCanNotBeNull(String argument)
-
-