You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
419 B
JavaScript

"use strict";
const errorChain = require("error-chain");
module.exports = {
InvalidPath: errorChain.create("InvalidPath"),
InvalidName: errorChain.create("InvalidName"),
PartitionExists: errorChain.create("PartitionExists"),
VolumeGroupExists: errorChain.create("VolumeGroupExists"),
InvalidVolumeGroup: errorChain.create("InvalidVolumeGroup"),
PhysicalVolumeInUse: errorChain.create("PhysicalVolumeInUse"),
};