Add exception mode to redirect from object-tag relation type to

object-event relation (generic, e.g. if the tag is actually a time)
This commit is contained in:
2025-06-26 14:34:18 +02:00
parent b7330634d7
commit 1635d4130a
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
/**
* Exception thrown in case a name entered for the relation between tag
* and object is actually an event type.
*/
final class MDImporterTagRelationTypeIsEventType extends Exception {
}