Page MenuHomec4science

HarbormasterThrowExceptionBuildStep.php
No OneTemporary

File Metadata

Created
Wed, Dec 25, 09:23

HarbormasterThrowExceptionBuildStep.php

<?php
final class HarbormasterThrowExceptionBuildStep
extends HarbormasterBuildStepImplementation {
public function getName() {
return pht('Throw Exception');
}
public function getGenericDescription() {
return pht('Throw an exception.');
}
public function getDescription() {
return pht('Throw an exception.');
}
public function execute(
HarbormasterBuild $build,
HarbormasterBuildTarget $build_target) {
throw new Exception(pht('(This is an explicit exception.)'));
}
}

Event Timeline