All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dooapp.gaedo.blueprints.CantLoadALiteralFromRandomVertex Maven / Gradle / Ivy

package com.dooapp.gaedo.blueprints;

import com.tinkerpop.blueprints.Vertex;

public class CantLoadALiteralFromRandomVertex extends LiteralsHaveNoAssociatedVerticesException {

	public CantLoadALiteralFromRandomVertex() {
	}

	public CantLoadALiteralFromRandomVertex(String message, Throwable cause) {
		super(message, cause);
	}

	public CantLoadALiteralFromRandomVertex(String message) {
		super(message);
	}

	public CantLoadALiteralFromRandomVertex(Throwable cause) {
		super(cause);
	}

	public CantLoadALiteralFromRandomVertex(Vertex key) {
		this("It is not possible to load a literal from a random vertex without knowing in which property it is stored\n"
						+ "Loading was attempted from "+GraphUtils.toString(key));
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy