<?php
namespace Respect\Validation\Exceptions;
class WritableException extends ValidationException
{
public static $defaultTemplates = array(
self::MODE_DEFAULT => array(
self::STANDARD => '{{name}} must be writable',
),
self::MODE_NEGATIVE => array(
self::STANDARD => '{{name}} must not be writable',
),
);
}