RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/lib/errors/InvalidUrlError.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { RocketChatError } from './RocketChatError';

export class InvalidUrlError extends RocketChatError<'invalid-url'> {
    constructor(message = 'Invalid url', details?: string) {
        super('invalid-url', message, details);
    }
}