File size: 206 Bytes
aec3094
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { UserError } from 'n8n-workflow';

export class InvalidSamlMetadataError extends UserError {
	constructor(detail: string = '') {
		super(`Invalid SAML metadata${detail ? ': ' + detail : ''}`);
	}
}