pp-planer/app/Exceptions/DuplicateCcliSongException.php
Thorsten Bus 091e00f255 feat(ccli): add CcliImportService for song upsert
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-05-10 18:56:38 +02:00

16 lines
358 B
PHP

<?php
namespace App\Exceptions;
use RuntimeException;
final class DuplicateCcliSongException extends RuntimeException
{
public function __construct(
public readonly int $existingSongId,
string $message = '',
) {
parent::__construct($message ?: "Song mit dieser CCLI-Nummer existiert bereits (#{$existingSongId})");
}
}