560898971ce5cbbe48c25f8c232d00bbf237449c
[yaffs-website] / web / core / modules / workspaces / src / Plugin / Validation / Constraint / DeletedWorkspaceConstraint.php
1 <?php
2
3 namespace Drupal\workspaces\Plugin\Validation\Constraint;
4
5 use Symfony\Component\Validator\Constraint;
6
7 /**
8  * Deleted workspace constraint.
9  *
10  * @Constraint(
11  *   id = "DeletedWorkspace",
12  *   label = @Translation("Deleted workspace", context = "Validation"),
13  * )
14  */
15 class DeletedWorkspaceConstraint extends Constraint {
16
17   /**
18    * The default violation message.
19    *
20    * @var string
21    */
22   public $message = 'A workspace with this ID has been deleted but data still exists for it.';
23
24 }