We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adrianmikula/JakartaMigration'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
DependencyGraphException.java•405 B
package adrianmikula.jakartamigration.dependencyanalysis.service;
/**
* Exception thrown when building a dependency graph fails.
*/
public class DependencyGraphException extends RuntimeException {
public DependencyGraphException(String message) {
super(message);
}
public DependencyGraphException(String message, Throwable cause) {
super(message, cause);
}
}