aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/hintexception.php
blob: 3a8361e9e80000463c88799d3f6c0b86c7139297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
 * Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace OC;

class HintException extends \Exception {

	private $hint;

	public function __construct($message, $hint = '', $code = 0, \Exception $previous = null) {
		$this->hint = $hint;
		parent::__construct($message, $code, $previous);
	}

	public function __toString() {
		return __CLASS__ . ": [{$this->code}]: {$this->message} ({$this->hint})\n";
	}

	public function getHint() {
		return $this->hint;
	}
}
lass="o">; box-sizing: border-box; min-width: 200px; top: 50%; left: 50%; transform: translate(-50%, -50%); max-height: calc(100% - 20px); max-width: calc(100% - 20px); overflow: auto; } .oc-dialog-title { background: $color-main-background; margin-left: 12px; } .oc-dialog-buttonrow { position: relative; display: block; background: transparent; right: 0; bottom: 0; padding: 10px; padding-bottom: 0; box-sizing: border-box; width: 100%; background-image: linear-gradient(rgba(255, 255, 255, 0.0), $color-main-background); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } /* align primary button to right, other buttons to left */ .oc-dialog-buttonrow.twobuttons button:nth-child(1) { float: left; } .oc-dialog-buttonrow.twobuttons.aside button:nth-child(1) { float: none; } .oc-dialog-buttonrow.twobuttons button:nth-child(2) { float: right; } .oc-dialog-buttonrow.onebutton button { float: right; } .oc-dialog-buttonrow:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } .oc-dialog-close { position: absolute; top: 0; right: 0; padding: 25px; background: url('../img/actions/close.svg') no-repeat center; } .oc-dialog-dim { background-color: #000; opacity: .20; z-index: 999; position: fixed; top: 0; left: 0; width: 100%; height: 100%; } .oc-dialog-content { width: 100%; }